Some of the programs or forms are slower under the PPC, often have to wait for more than ten or ten seconds, which may allow users to think that he doesn't have some options, such as when calling a form that uses the database. Although the second time I open this form will be very fast, but if you have a waiting icon immediately after the user has some options or menu items, then you will not let the user think that your program is very strange, and give it The program adds color, why not, the method is simple: add a sentence before the form starts: Cursor.current = Cursors.Waitcursor Add a sentence in the form of the form: Cursor.current = Cursors.default
For example: Private Sub MenuItem3_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem3.Click 'Display the wait cursor Cursor.Current = Cursors.WaitCursor FormOpenPatient.ShowDialog () End Sub Private Sub Form_OpenPatient_Load (ByVal sender As Object, byval e as system.eventargs) Handles mybase.load 'Do Some Other Things' Display the default cursor cursor.current = Cursors.default End SUB