Data string in Table

baul14

Registered User.
Local time
Today, 16:33
Joined
Sep 17, 2003
Messages
10
Hello all,

I have this problem with string data type.

I have this code:
dim strPartPartNum as string
dim strPartPartNumExist as string

strPartPartNum = strPartPartNumExist & "," & Chr$(34) & strPartPartNum

What I am trying to do here is each value of string variables will be save on another variable.

the the strPartPartNum will be save in the table.

the problem is, the save data in the table will have an extra quotation marks on it.
ex: pen, " pencil

I would like to remove that quotation marks between each string everytime they print in table


Can someone help me pls.


Thank alot,
baul
 
Stop putting the extra quotation mark in then.

The Chr$(34) is the ASCII code for "

Code:
strPartPartNum = strPartPartNumExist & "," & strPartPartNum


:rolleyes:
 
Thank you very much!


Baul
 

Users who are viewing this thread

Back
Top Bottom