Sourounds with in 3.0 Q.
How would I add this, "Surround with App Starting Cursor" to the Surrounds with menu?
How do I get rid of all the VB surrounds withs?
Cursor saveCurrentCursor = Cursor.Current;
Cursor.Current = Cursors.AppStarting;
try
{
//Surrounded Code here
}
finally
{
Cursor.Current = saveCurrentCursor;
}
Please sign in to leave a comment.