sledgehammer
New member
- Local time
- Today, 05:18
- Joined
- Aug 10, 2021
- Messages
- 3
This is some simple code I wrote. I run it through debug and get no errors. When I put quick watch in the debug they show <out of context>. I have tried everything I can think of and nothing works.
Public Sub txtGoto_Enter()
Dim MyString As String
Open "C:\Residents\Residentvb.accdb" For Input As #1
Do Until EOF(1)
Input #1, MyString
If gotolot = LotNo Then
End If
Loop
Close #1
End Sub
Public Sub txtGoto_Enter()
Dim MyString As String
Open "C:\Residents\Residentvb.accdb" For Input As #1
Do Until EOF(1)
Input #1, MyString
If gotolot = LotNo Then
End If
Loop
Close #1
End Sub