memo field to string variable

S

Souris

I manipulate memo field which stoores text only in my VBA code to assign a
string variable in VBA application.

The string only keep part of the string.

What is the maximum characters memo fields information may assign to a
strign variable?

If the text from memo field is too long.
Any work around?


Your information is great appreciated,
 
M

Marshall Barton

Souris said:
I manipulate memo field which stoores text only in my VBA code to assign a
string variable in VBA application.

The string only keep part of the string.

What is the maximum characters memo fields information may assign to a
strign variable?

If the text from memo field is too long.


A memo field and a string variable can hold more text than
you can read in a day. A text box can only hold 64K
characters.

How many characters are you getting and how many do you
expect to get?

If you are using a query to retrieve the memo field, check
if the query is or is not getting the entire memo field.
 
L

Linq Adams via AccessMonster.com

Also important, I think, is exactly what you are planning on doing with this
string variable?

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000/2003

Message posted via AccessMonster.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top