Reputation: 11
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.
Upvotes: 1
Views: 791
Reputation: 12578
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.
Upvotes: 0
Reputation: 74560
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.
Upvotes: 1