I am trying to concatenate an object name with a string Variable. This text returns the proper value.
I have tried numerous string arrangements, with no success, it would seem to me that this string arrangement should work.
but it gives me the following error
Run-time error '2465'
Application-defined or object-defined error
There has got to be a way of doing this. Does anyone know how???
Code:
str = " '" & Forms!frmMain.TopicHeadA & "'"
I have tried numerous string arrangements, with no success, it would seem to me that this string arrangement should work.
Code:
strTabNo = "A"
str = '" & Forms!frmMain.TopicHead & strTabNo & "'"
but it gives me the following error
Run-time error '2465'
Application-defined or object-defined error
There has got to be a way of doing this. Does anyone know how???