Hi,
VB.net
Started off with :
Me.Cursor = Cursors.WaitCursor
which works fine until you move the mouse.
This works for all the controls on the form:
Dim i As Integer
Do Until i = Me.Controls.Count
Me.Controls(i).Cursor = System.Windows.Forms.Cursors.WaitCursor
i = i + 1
Loop
...but not any controls in a tab control or any controls that are grouped (eg radio buttons)
I did then loop through all the controls on the tab control, but of course all of them are grouped so only affected the tabs themselves.
Thanks
Kristian
VB.net
Started off with :
Me.Cursor = Cursors.WaitCursor
which works fine until you move the mouse.
This works for all the controls on the form:
Dim i As Integer
Do Until i = Me.Controls.Count
Me.Controls(i).Cursor = System.Windows.Forms.Cursors.WaitCursor
i = i + 1
Loop
...but not any controls in a tab control or any controls that are grouped (eg radio buttons)
I did then loop through all the controls on the tab control, but of course all of them are grouped so only affected the tabs themselves.
Thanks
Kristian