EnriquitoPY
EnriquitoPY

Reputation: 11

"wait window nowait" in .NET

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

Answers (2)

Neil Williams
Neil Williams

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

casperOne
casperOne

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

Related Questions