P
pyc
Guest
Big problem with ms-access MEMO field (text truncated and ends with strange āई char)
Dear,
I have encountered the following problem in Access 2002 with Memo fields
Start with a table (The_Table) with a Memo field (The_Memo_Column)
I would like to populate this column from a edit field (The_Edit_Field) located into a Form (The_Form)
When I enter a large sentence in the edit field (seems more than 512 char ????)
and When I manage the memo field through a insert SQL query The text stored in the Memo field
is truncated and ends with strange āई characters sequence
By the way, when I manage the information directly through the standard Ms-access method
Action using a SQL query
I create a insert query
The_Query=
INSERT INTO The_Table (The_Memo_Column) VALUES (Forms!The_Form!The_Edit_Field);
On click on a button, I call the query as follow
DoCmd.SetWarnings False
DoCmd.OpenQuery The_Query, acNormal, acEdit
DoCmd.SetWarnings True
Action using the ms-access standard method
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Thanks in advance for your help !
Aloha
PYC
Dear,
I have encountered the following problem in Access 2002 with Memo fields
Start with a table (The_Table) with a Memo field (The_Memo_Column)
I would like to populate this column from a edit field (The_Edit_Field) located into a Form (The_Form)
When I enter a large sentence in the edit field (seems more than 512 char ????)
and When I manage the memo field through a insert SQL query The text stored in the Memo field
is truncated and ends with strange āई characters sequence
By the way, when I manage the information directly through the standard Ms-access method
Action using a SQL query
I create a insert query
The_Query=
INSERT INTO The_Table (The_Memo_Column) VALUES (Forms!The_Form!The_Edit_Field);
On click on a button, I call the query as follow
DoCmd.SetWarnings False
DoCmd.OpenQuery The_Query, acNormal, acEdit
DoCmd.SetWarnings True
Action using the ms-access standard method
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Thanks in advance for your help !

Aloha
PYC