Hi all.
This is more than likely to be real simple, but I can't get it to work....
I need to add a string into a Form! line.
Here is what doesn't work
Can anyone help?
This is more than likely to be real simple, but I can't get it to work....
I need to add a string into a Form! line.
Here is what doesn't work
Code:
Dim rs As Object
Dim frm, fld As String
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![Combo16])
Me.Bookmark = rs.Bookmark
frm = Forms![Form - Quote]![Frame155]
If frm = 1 Then fld = "Case"
If frm = 2 Then fld = "Memory"
Forms![Form - Quote]![***fld String here***] = Me![Description]
Forms![Form - Quote]![***fld String here***] = Me![Cost]
Can anyone help?