ThunderBolt
Registered User.
- Local time
- Today, 15:01
- Joined
- Apr 29, 2003
- Messages
- 25
I need to translate this visual basic code intoc ommon english, sort of like a description of what is goin on at each command. The code is used to go to a record that has the same value as the value selected from the drop down list (a search function on my form really):
89. Private Sub Combo20_AfterUpdate()
90. ' Find the record that matches the control.
91. Dim rs As Object
92.
93. Set rs = Me.Recordset.Clone
94. rs.FindFirst "[Subject Reference Code] = '" & Me! [Combo20] & "'"
95. Me.Bookmark = rs.Bookmark
96. End Sub
Please can anyone help please, thankyou.
Regards,
ThunderBolt
89. Private Sub Combo20_AfterUpdate()
90. ' Find the record that matches the control.
91. Dim rs As Object
92.
93. Set rs = Me.Recordset.Clone
94. rs.FindFirst "[Subject Reference Code] = '" & Me! [Combo20] & "'"
95. Me.Bookmark = rs.Bookmark
96. End Sub
Please can anyone help please, thankyou.
Regards,
ThunderBolt