D
DS
This statement isn't passing a value..
Event 1
This is to set the Number.....
Private Sub Image21_Click()
Dim BT As Integer
BT = 1
End Sub
Event 2
This is to set the text in text11
Private Sub Image18_Click()
Dim BT As Integer
Select Case BT
Case 1
Me.Text11 = "Transfer Bar Check"
Case 2
Me.Text11 = "Transfer Bar Tab"
Case 3
Me.Text11 = "Quik Screen"
End Select
End Sub
After you click the first event, then the second, nothing happens,
Text11 doesn't fill.
Any Suggestions Appreciated.
Thanks
DS
Event 1
This is to set the Number.....
Private Sub Image21_Click()
Dim BT As Integer
BT = 1
End Sub
Event 2
This is to set the text in text11
Private Sub Image18_Click()
Dim BT As Integer
Select Case BT
Case 1
Me.Text11 = "Transfer Bar Check"
Case 2
Me.Text11 = "Transfer Bar Tab"
Case 3
Me.Text11 = "Quik Screen"
End Select
End Sub
After you click the first event, then the second, nothing happens,
Text11 doesn't fill.
Any Suggestions Appreciated.
Thanks
DS