how can i check if a command button is clicked in vb.net 2003?
Printable View
how can i check if a command button is clicked in vb.net 2003?
why would you want to?
heres how anyway:
vb Code:
Dim clicked As Boolean = False Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click clicked = True End Sub