hi
I have this programs that saves two arrays, tabletop(100) and tableleft(100). How can I save these arrays to be used by another program?
Dim tableLeft(100) As Integer
Dim tabletop(100) As Integer
Private Sub Command1_Click()
i = Val(Text3.Text)
tableLeft(i) = Val(Text1.Text)
tabletop(i) = Val(Text2.Text)
End Sub
Private Sub Command2_Click()
k = Val(Text4.Text)
Label1.Caption = tableLeft(k)
Label2.Caption = tabletop(k)
End Sub
Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Text1.Text = X
Text2.Text = Y
End Sub
I have this programs that saves two arrays, tabletop(100) and tableleft(100). How can I save these arrays to be used by another program?
Dim tableLeft(100) As Integer
Dim tabletop(100) As Integer
Private Sub Command1_Click()
i = Val(Text3.Text)
tableLeft(i) = Val(Text1.Text)
tabletop(i) = Val(Text2.Text)
End Sub
Private Sub Command2_Click()
k = Val(Text4.Text)
Label1.Caption = tableLeft(k)
Label2.Caption = tabletop(k)
End Sub
Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Text1.Text = X
Text2.Text = Y
End Sub