P
pamelafluente
I have an animated gif in an image control:
Me.ImageProgress1.Visible = False
I want that when the User click on a given button to execute a long
task
Me.ImageProgress1 become visible until the task on the server is
finished.
I call the task this way:
Protected Sub ButtonSomeLongTast_Click(ByVal sender As Object, ByVal
e As System.EventArgs) Handles ButtonSomeLongTast.Click
ExecuteLongTask()
End Sub
I think I am dumb as I can't figure out how to do this simple thing!
Thanks for any help!
-Pam
Me.ImageProgress1.Visible = False
I want that when the User click on a given button to execute a long
task
Me.ImageProgress1 become visible until the task on the server is
finished.
I call the task this way:
Protected Sub ButtonSomeLongTast_Click(ByVal sender As Object, ByVal
e As System.EventArgs) Handles ButtonSomeLongTast.Click
ExecuteLongTask()
End Sub
I think I am dumb as I can't figure out how to do this simple thing!
Thanks for any help!
-Pam