D
dh
I have a connect string for loading a combo box that I want to modify. Now
it ends up being one column from my access database, feeds a combo box on a
Custom Outlook form.
Connect string:
strSQL = "SELECT [DienCodes],[DetailedApplication]" & " " & "AS FinalCodes"
& " " & "from Codes " & "WHERE [CodeID] =" & CatID & " " & "AND" & " " &
"[CountryCode] =" & CountryCode & " " & "ORDER BY [DienCodes];"
My two columns from the database are DienCodes and DetailedApplication
I want to take two columns and concatenate them into the one combo box.
I am having trouble figuring this out.
Any assistance would be appreciated!
Thanks
DH
it ends up being one column from my access database, feeds a combo box on a
Custom Outlook form.
Connect string:
strSQL = "SELECT [DienCodes],[DetailedApplication]" & " " & "AS FinalCodes"
& " " & "from Codes " & "WHERE [CodeID] =" & CatID & " " & "AND" & " " &
"[CountryCode] =" & CountryCode & " " & "ORDER BY [DienCodes];"
My two columns from the database are DienCodes and DetailedApplication
I want to take two columns and concatenate them into the one combo box.
I am having trouble figuring this out.
Any assistance would be appreciated!
Thanks
DH