B
Boon
Hi,
Private Sub Command_import_Click()
Me.Label_Import.Caption = "Importing"
ImportWestCoast1
Me.Label_Import.Caption = ""
End Sub
Above is my code. What I want to do is when a user clicks a button, a label
in a form will display "Importing". When the process is done, the word
"Importing" disappears. It didn't work. When I click the button, I didn't
see the word Importing. The ImportWestCoast1 is a Procedure in my module. It
runs about 10 seconds.
Thanks for your help.
Boon
Private Sub Command_import_Click()
Me.Label_Import.Caption = "Importing"
ImportWestCoast1
Me.Label_Import.Caption = ""
End Sub
Above is my code. What I want to do is when a user clicks a button, a label
in a form will display "Importing". When the process is done, the word
"Importing" disappears. It didn't work. When I click the button, I didn't
see the word Importing. The ImportWestCoast1 is a Procedure in my module. It
runs about 10 seconds.
Thanks for your help.
Boon