Sytze de Boer wrote:
> Some of you gurus can't relate to simpletons like myself.
> Let me explain
> 
> Whatever I've tried so far, my variable is trunctated to 255 chars
> So it doesn't work inside a text box or an wrapped label
> I can't figure how to do text endtext inside a form
> 
> I know it's something fundamental I'm missing this morning.
> Is this called brain fade or the signs of something far more alarming.

Oh that's right. There's some sort of string-size limitation in VFP. I'm 
sure it is more than 255 chars, but could be less that 65K.

Dirty ugly way that I remember:

create cursor one_record (mText M)
select one_record
append blank
scatter memo name oOneRecord
for n = 1 to 500000:
   oOneRecord.mText = oOneRecord.mText + "hiya_"
endfor

* now stuff your editbox with the contents of oOneRecord.mText

The non-rusty gurus will of course have a cleaner solution.

Paul


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/[email protected]
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to