View Single Post
  #2 (permalink)  
Old 05-31-2008
Andy B Andy B is offline
Peon
 
Join Date: May 2008
Posts: 33
Default

Try declaring it as a Property ?? This give all classes/methods access to the variable. Say something like this where you read the value as Z:


private intX as Integer = 0
Public ReadOnly Property Z As Integer
Get
Return intX
End Get
End Property
Reply With Quote