R
RG
I have a table consisting of the following:
ID - AutoNumber
EventCode - Memo
I created a form based on this table.
In the EventCode textbox on my form, I can paste many characters (I'm
assuming up to 64K, but most I've needed was 10K)
In my VB Code I do the following:
EventCode.Text = sCode
sCode is about 3000 characters, but can grow or shrink.
This works:
EventCode.Text = Left(sCode, 2048)
This will fail
EventCode.Text = Left(sCode, 2049)
But I can paste more than much more than 2049 characters into the EventCode
textbox without any issue.
So what I am I missing?
How can I programatically set EventCode.Text with more that 2048 characters?
Thanks
ID - AutoNumber
EventCode - Memo
I created a form based on this table.
In the EventCode textbox on my form, I can paste many characters (I'm
assuming up to 64K, but most I've needed was 10K)
In my VB Code I do the following:
EventCode.Text = sCode
sCode is about 3000 characters, but can grow or shrink.
This works:
EventCode.Text = Left(sCode, 2048)
This will fail
EventCode.Text = Left(sCode, 2049)
But I can paste more than much more than 2049 characters into the EventCode
textbox without any issue.
So what I am I missing?
How can I programatically set EventCode.Text with more that 2048 characters?
Thanks