Namespace Experimental
Public Class class1
Public Shared a As Integer 'class2 cant see/change me, why ?
Me.text = Class2.HiImclass2subfunction(32,32,32) 'this works
End Class
Public Class class2
Shared Sub HiImclass2subfunction(......) As String
a = a + 1 'this doesnt work
functionYO(23,23,23) 'now this works
End Sub
Private Shared Function functionYO(a,b,c) As String
.....
End Function
End Class
End Namespace
I got some elemets working great... only thing bugs me now is that damn class1 variable, any help ?