Hi
I would like to add double quote around ListBoxColumn.Items(counter).Value which is comming from listbox, I tried to use "\"" but it did not work.
Thanks for help
For counter = 0 To (ListBoxColumn.Items.Count - 1)
If ListBoxColumn.Items(counter).Selected = True Then
strDynamicSqlCol = ListBoxColumn.Items(counter).Value + " ,"
strSqlCol = strSqlCol + strDynamicSqlCol
End If
Next
I would like to add double quote around ListBoxColumn.Items(counter).Value which is comming from listbox, I tried to use "\"" but it did not work.
Thanks for help
For counter = 0 To (ListBoxColumn.Items.Count - 1)
If ListBoxColumn.Items(counter).Selected = True Then
strDynamicSqlCol = ListBoxColumn.Items(counter).Value + " ,"
strSqlCol = strSqlCol + strDynamicSqlCol
End If
Next