I have a multi-threaded progress bar form to show progress for what should be a large process.
i call this form by
form.StartOperation()
form.ShowDialog(this)
on some occasions the startope...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20912740.html
Zones:
C#Date Answered: 03/09/2004 Grade: A Views: 86
I have been using Forms - and therefore .showDialog() - (in J++ - although I'm pretty sure this is just WinAPI stuff so applies equally from C++ or VBasic) for a long time but they seem to (mis)...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_21115004.html
Is there a way to force ShowDialog Result
http://www.experts-exchange.com/Programming/Misc/Q_21244053.html
Zones:
ProgrammingDate Answered: 12/21/2004 Grade: B Views: 22
hi !!
i have a console application, which is of the following structure
//some lines
//show Form (and pause)
//some more lines
//show Form again (and pause again)
//yet more lines
when t...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21374759.html
Zones:
C#Date Answered: 05/10/2005 Grade: A Views: 0
In the following code:
if (f.ShowDialog(this) == DialogResult.Cancel) return;
I can't seem to use a f.btnOk.PerformClick(); on the form I'm calling with ShowDialog. How do I get the above code t...
http://www.experts-exchange.com/Programming/Misc/Q_21545594.html
Zones:
ProgrammingDate Answered: 12/01/2005 Grade: A Views: 244
speak newbie to me.
I have an application that has a wizard which is a dialog not a form, apparently this was done in order for it to freeze the application while the wizard is running. Now the th...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21803918.html
Zones:
C#Date Answered: 04/06/2006 Grade: A Views: 0
I am displaying a form, with a textbox and a property saveName.
When I try to call that function after the form closes, there is no value
in the property.
Dim saveAsForm As New FrmSave...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21924646.htm...
Hi,
I have three forms in my application.
Form1 is the main form for the program. A button on Form1 is coded like this:-
=====Button on Form1======
Dim frmForm2 As New Form2
frmForm2.Sho...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Studio_.NET_2005/Q_23000...
Hello Expert, I have a form and my frmMainMenu is the mdiParent, and on the frmMainMenu when i select to open ProjectInfo I make that the child
thi...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20947303.html
Zones:
C#Date Answered: 04/13/2004 Grade: A Views: 30
I have a timer that updates a "live" display every 100MS. In the timer ellapsed method, I have a lock(this) around the code in this ellapsed method. This all seems to work fine. But I noticed in...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21357632.html
Zones:
C#Date Answered: 03/20/2005 Grade: A Views: 0