Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hello. Is there a variable that 1

Status
Not open for further replies.

SteveCarrier

Programmer
Aug 6, 2002
34
CA
Hello.

Is there a variable that will hold more data than a String? I need a variable that will concatanate a massive string together so that I can combine many fields and then dispense them into a memo field I made.

Thanks in advance.

Steve Carrier
 
You could use a string array and then loop through each item and update the memo field or alternatively rather than concatenate them together in code you could update your memo field using consecutive updates as follows:

update yourtable
set yourmemofield = yourmemofield+" "+nextstring

change nextstring on each append to the string variable you have

Andy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top