I have the following code:
strSql = "Insert into tblImage (txtImageName, fileName) VALUES ('" & strFolder & "', '" & strFile & "')"
Here's the values:
txtImageName is a field
fileName is a field
strFolder is "c:\photo"
strFile is "pic1.bmp"
I need to combine the 2 outputs to read c:\photo\pic1.bmp. Can this be done in code?
Thank you
strSql = "Insert into tblImage (txtImageName, fileName) VALUES ('" & strFolder & "', '" & strFile & "')"
Here's the values:
txtImageName is a field
fileName is a field
strFolder is "c:\photo"
strFile is "pic1.bmp"
I need to combine the 2 outputs to read c:\photo\pic1.bmp. Can this be done in code?
Thank you