where do i declare an integer so that it can be read by all subs and forms
...
the best way i have found to do this so far is to have the value flash up on the screen and then go away after being read by another sub
where do i declare an integer so that it can be read by all subs and forms
...
the best way i have found to do this so far is to have the value flash up on the screen and then go away after being read by another sub
Readable Variables
Dave Singleman
Module Module1
Public some_global_var As String
End Module
Bill Chadwick
Protected Number as Integer = 0
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load End Sub End Class
ManiD