MikeGeitner
Technical User
Hello,
I don't know if I'm going about this the right way, but I'm working with a form based a recordset that comes from a different database.
When the form loads I'm getting the list of materials in a combobox. Now, what I'd like to do is populate a textbox on the form with a field from the matching record.
I'm getting a syntax error with the dlookup statement. Any help is appreciated.
Here's the dlookup:
I don't know if I'm going about this the right way, but I'm working with a form based a recordset that comes from a different database.
When the form loads I'm getting the list of materials in a combobox. Now, what I'd like to do is populate a textbox on the form with a field from the matching record.
I'm getting a syntax error with the dlookup statement. Any help is appreciated.
Code:
Private Sub Form_Load()
Set ws = DBEngine.Workspaces(0)
Let strConnection = "ODBC;DSN=" & "jobboss32" & ";UID=" & "Support" & ";PWD=" & "lonestar"
Set db = ws.OpenDatabase("", False, False, strConnection)
Set rs = db.OpenRecordset("SELECT * FROM Material WHERE type = 'F' AND status = 'Active' ORDER BY Material", dbOpenDynaset, dbReadOnly)
Do Until rs.EOF = True
cboMat.AddItem rs.Fields("Material")
rs.MoveNext
Loop
End Sub
Here's the dlookup:
Code:
Private Sub cboMat_AfterUpdate()
Me!txtDesc = DLookup("[Description]", "Material", "[Material] = " & [cboMat] & "'")
End Sub