M
Midget
I have a line of code...
Dim FolderName As String
FolderName = Me![PR#] & ", " & Me![Serial] & ", " & Me![Name]
That basically is going to open up a folder based on the current
record. For backwards compatibility I need to be able to use a
wildcard instead of a field name, something like:
FolderName = Me![wildcard here] & ", " & Me![Serial] & ", " & Me!
[wildcard here]
Does anyone know the syntax for accomplishing this? I have tried
everything at my disposal with no luck
Thanks in advance!!
Ryan
Dim FolderName As String
FolderName = Me![PR#] & ", " & Me![Serial] & ", " & Me![Name]
That basically is going to open up a folder based on the current
record. For backwards compatibility I need to be able to use a
wildcard instead of a field name, something like:
FolderName = Me![wildcard here] & ", " & Me![Serial] & ", " & Me!
[wildcard here]
Does anyone know the syntax for accomplishing this? I have tried
everything at my disposal with no luck
Thanks in advance!!
Ryan