all groups > dotnet windows forms > january 2004 > threads for monday january 26
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Tabbing to another control
Posted by STom at 1/26/2004 7:45:11 PM
I would like to capture the tab key when the user selects tab in my edit
field and then tab to another text box in another panel.
What is the command to do this in .Net (vb.net)?
Thanks.
STom
... more >>
launching IE from winforms app ...error
Posted by Mike Hennessy at 1/26/2004 7:09:42 PM
I have a strange error occuring in my winforms app that I can't seem to find
any fix for.
With a button click I am launching something like the following:
string url ="http://www.microsoft.com"
System.Diagnostics.Process.Start(url);
Now, it USED to work in my current winforms app. However... more >>
Cannot copy Graphics.
Posted by Andrew Vos at 1/26/2004 2:51:05 PM
I notice that it is almost impossible to save a Graphics Object to a file, eg bmp.
What is the reason for this, will there ever be an upgrade???... more >>
SendMessage, PostMessage problems with MessageBox
Posted by Cole Shelton at 1/26/2004 1:09:21 PM
Hi all,
I am using SendMessage to manipulate the window of another process. The
problem is that when I use SendMessage to click a certain button a
MessageBox is displayed and my program will not continue until the user
clicks the OK button, which is not what I want.
Therefore, I switched ... more >>
Genralized way to handle exceptions
Posted by Bob Kirkwood at 1/26/2004 11:31:06 AM
Is there a generalized way to catch exceptions for a form/window? With MFC, I could implement a try/catch in an override of PreProcessMessage(..), or WndProc(..), but with Forms, those don't seem to work the same way and so the try/catch misses the exception
I'm trying to find a way to avoid impl... more >>
Default: Everyone and not Just Me
Posted by DraguVaso at 1/26/2004 11:26:47 AM
Hi,
When installing an application with an msi-package, you have to choose on a
sudden moment to install it only for the curent user (Just Me) or Everyone.
The radio-button is default set on the Just Me option, but I'm looking for a
way to set it on the Everyone by default.
Anybody knows ho... more >>
Cursor won't stay as I set it (WaitCursor)
Posted by wayne.bradney NO[at]SPAM usa.net at 1/26/2004 9:56:13 AM
Hi,
I have an application where the login to the server could take 30-40
seconds. I have a main form with a "Login" button on it and a handler:
private void btnLogin_Click(object sender, System.EventArgs e) {
Cursor.Current = Cursors.WaitCursor;
log.Debug("About to open session");
session... more >>
How to know if a "Form" is currently running in background ?
Posted by ppcdev NO[at]SPAM hotmail.com at 1/26/2004 5:23:42 AM
Hi.
Actually, i'm working on C# projects in some french companies.
Would anyone know how to know if a "form" is currently running in
background ?
Actually, I've implemented the following test in an application :
Form myFormHandle = new Form1();
this.mySavedForm1 = myFormHandle;
Form myF... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Refreshing .config
Posted by Eldo nFerran de Pol at 1/26/2004 3:11:05 AM
I'm overwriting appSettings in the .config using the XMLDocument object and then saving through. While this works fine the changes aren't visible ti my application until it restarts.
Is there any way that I can refresh the config file while the application is running?
Cheers,
Eldon Fer... more >>
|