winapp Questions
3
I have written a C# program for saving and reading PDF files. The program saves the output files to the local computer's bin folder. I want my program to access files from a different computer.
I ...
Stilton asked 11/12, 2012 at 19:2
5
Solved
In a WinApp I am simply trying to get the absolute path from a Uri object:
Uri myUri = new Uri(myPath); //myPath is a string
//somewhere else in the code
string path = myUri.AbsolutePath;
This w...
Wodge asked 12/1, 2009 at 18:42
2
Solved
When I use MyPrintDocument.print() in a Windows application written in C#, a dialog is shown for the Windows processing print routine with a cancel button. I don't want this dialog shown, is it pos...
2
Solved
I am using the following code.
Why does it not run properly ?
private void Form1_Shown(object sender, EventArgs e)
{
for (int i = 1; i <= 100; i++)
{
Application.DoEvents();
Thread.S...
Intelsat asked 24/11, 2011 at 15:8
3
I have a problem with the display of our .NET Windows application under high dpi settings.
All forms are set to AutoScaleMode = DPI, but this does not solve all the problems.
Basically labels end...
1
© 2022 - 2024 — McMap. All rights reserved.