structure
-
how can i declare structure in VB I know that in C++ struct egStruct { int a; int b; }; void main() { egStruct egS; egS.a = 2; egS.b = 6; } is it Private Type egStruct Dim a As Integer,b As Integer End Type thanks
In Visual Basic 6.0...
Public Type egStruct
a As Integer
b As Integer
End TypeIn Visual Basic .NET...
Structure egStruct
Public a As Integer
Public b As Integer
End StructureJeremy Falcon Imputek
-
how can i declare structure in VB I know that in C++ struct egStruct { int a; int b; }; void main() { egStruct egS; egS.a = 2; egS.b = 6; } is it Private Type egStruct Dim a As Integer,b As Integer End Type thanks
Hi, As follow: Type egStruct A As Integer B As Integer End Type A. Riazi
-
how can i declare structure in VB I know that in C++ struct egStruct { int a; int b; }; void main() { egStruct egS; egS.a = 2; egS.b = 6; } is it Private Type egStruct Dim a As Integer,b As Integer End Type thanks