VB help

prose7777

New member
Local time
Today, 22:43
Joined
Dec 15, 2003
Messages
9
I have a query calling data from a table with 4 diffrent coloms and 50 records which decend by date.

I want to open the query in VB extract a specific record by date and then fronm the record take a specific colom and send it to a textbox in the form here is what i have so far

Private Sub Command16_Click()
Dim stDocName As String

stDocName = "4RK11509 Query"
DoCmd.OpenQuery stDocName, acNormal, acEdit
DoCmd.GoToRecord DoCmd.GoToRecord, , acLast

End Sub

Any Suggestions
 
vb help

but can i extract a specific field from the record into a text box?
 

Users who are viewing this thread

Back
Top Bottom