I have a query by form which copies the content of a Memo type field to another record, but the text gets cut when the length is over 510 characters and weird symbols are added at the end of my text. This happens in Access 2003, I'v tried in Access 2007 and my update works fine.
This is my query
UPDATE MyTable SET MyMemofield = [Forms]![Myform]![MysourcememoField]
WHERE Idfield=[Forms]![MyForm]![Idtoupdate];
I've been searching about this problem I know there are limitations when using distinct or group by, but i can not find a solution for my update problem but by all my research
I supposed there is a limitation when using parameters in this way. So, i tried running the query in code with query definitions and adding parameters but it was worst because the parameters only takes values until 255 characters.
Any one know a workaround for this?? Help please
Thanks in advance
This is my query
UPDATE MyTable SET MyMemofield = [Forms]![Myform]![MysourcememoField]
WHERE Idfield=[Forms]![MyForm]![Idtoupdate];
I've been searching about this problem I know there are limitations when using distinct or group by, but i can not find a solution for my update problem but by all my research
I supposed there is a limitation when using parameters in this way. So, i tried running the query in code with query definitions and adding parameters but it was worst because the parameters only takes values until 255 characters.
Any one know a workaround for this?? Help please
Thanks in advance