Is there something similar to "wait window nowait" in Windows Forms (.NET VS2008) ?
This is a commonly used sentence in Visual FoxPro for debugging purposes and "quick and dirty" thermometers.
Is there something similar to "wait window nowait" in Windows Forms (.NET VS2008) ?
This is a commonly used sentence in Visual FoxPro for debugging purposes and "quick and dirty" thermometers.
No, there isn't. You could easily create a Windows Form and pop it up, or repaint a section on your own form to duplicate this functionality easily though.
As an alternative, you could use Debug.WriteLine
to write out debug information. The output will show up in the Output tab in the Visual Studio debugger when debugging your application.