Click to See Complete Forum and Search --> : STRING Variables
November 25th, 1999, 05:11 AM
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
Ravi Kiran
November 25th, 1999, 05:21 AM
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
Ravi Kiran
November 25th, 1999, 05:21 AM
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
November 25th, 1999, 05:39 AM
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
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.