jokelogpop
Registered User.
- Local time
- Today, 05:20
- Joined
- Oct 16, 2004
- Messages
- 22
HI all!
I have this code:
Private Sub cmdGoToBlkRecord_Click() 'Find Blank Record Acording to the number of Toggle Button.
Dim NumOfComputer As Variant
NumOfComputer = FrameToggle ' Dimention the value of Toggle button
MsgBox "The Number of Toggle is NumOfComputer "
' I want to search the record acording to the Number of Toggle buttons
Me.RecordsetClone.FindFirst "[fldNumComp] = NumOfComputer And Not Isnull([FirstTime]) And Isnull([SecondTime])"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
If I leave out the condition "[fldNumComp] = NumOfComputer ", It work well. But I realy need this Option. Can you give me a guide?
Sory for my bother!!
I have this code:
Private Sub cmdGoToBlkRecord_Click() 'Find Blank Record Acording to the number of Toggle Button.
Dim NumOfComputer As Variant
NumOfComputer = FrameToggle ' Dimention the value of Toggle button
MsgBox "The Number of Toggle is NumOfComputer "
' I want to search the record acording to the Number of Toggle buttons
Me.RecordsetClone.FindFirst "[fldNumComp] = NumOfComputer And Not Isnull([FirstTime]) And Isnull([SecondTime])"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
If I leave out the condition "[fldNumComp] = NumOfComputer ", It work well. But I realy need this Option. Can you give me a guide?
Sory for my bother!!