I have a form base on a recordset that is created at runtime when the form loads. Part of the string includes some open arguments. One of them is a folder path.
The final string should be C\foldername\picturename
The first part is the static path name ex(C\folder one).
The second half is a column from the recordset used for the form.
My string to populate the recordset looks something like this just a short example
Dim sDisplay as string
sDisplay = me.openargs
"Select " & sDisplay & " mytable.customer as cust from mytable"
I can't figure out the correct syntax. I'm sure its easy
Thanks
Andy
The final string should be C\foldername\picturename
The first part is the static path name ex(C\folder one).
The second half is a column from the recordset used for the form.
My string to populate the recordset looks something like this just a short example
Dim sDisplay as string
sDisplay = me.openargs
"Select " & sDisplay & " mytable.customer as cust from mytable"
I can't figure out the correct syntax. I'm sure its easy
Thanks
Andy