Full_Williams
Registered User.
- Local time
- Today, 03:08
- Joined
- Jul 2, 2002
- Messages
- 88
Hi there,
I have a table with 6 memo fields and I want to add all the memo field data to a different table with 1 memo field. So I have some vb code that pulls out memo field1 data then adds to the new table then pulls out memo field2 data and adds to the new table etc. For some reason the data in the new table get's cut off. There seems to be a limit to the number or characters it'll allow to be added.
I use
rst0.addNew
rst0![Memo] = rst1![memo]
rst0.update
Does anyone have any ideas why this might be happening?
Full Williams
I have a table with 6 memo fields and I want to add all the memo field data to a different table with 1 memo field. So I have some vb code that pulls out memo field1 data then adds to the new table then pulls out memo field2 data and adds to the new table etc. For some reason the data in the new table get's cut off. There seems to be a limit to the number or characters it'll allow to be added.
I use
rst0.addNew
rst0![Memo] = rst1![memo]
rst0.update
Does anyone have any ideas why this might be happening?
Full Williams