I'm Trying To make A button Only clickable once in Vb I was thinking of this code
Sub B64_click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles B64.Click
Dim BClick As Integer = 0
If BClick = 0 Then
BClick = 1
'Other instructions
End If
Any Other Ideas! Also Can I do something so that the button will make a sound when it is clicked ?!
Any Other Ideas! Thank u