Hello
How can I declare a STRING variable that can contains more than 264 characters?
I don't want to concatain sereral STRING variables, that's why i ask this Q !
Thanks
TS
Printable View
Hello
How can I declare a STRING variable that can contains more than 264 characters?
I don't want to concatain sereral STRING variables, that's why i ask this Q !
Thanks
TS
Why? what is so santimoneous about 264!
dim szstr as string(265) should give you 265 chars
szStr = space(1024) gives you 1024
szstr = string(2048,'q') gives you a string of 2K chars filled with q's
RK
Why? what is so great about 264!
dim szstr as string(265) should give you 265 chars
szStr = space(1024) gives you 1024
szstr = string(2048,'q') gives you a string of 2K chars filled with q's
RK
In Fact I'M using VB for ACCESS, and in this VB the STRING type is not the same than in VB. You are limited to 256 character. So i'm oblige to concatain several variable !
Thank's