Hi
I'm using MS Access 2003 and I have a table which has a field called NT_Memo and as its name suggest, has a Data Type of Memo. My understanding is that under 2003 you can enter 65536 characters into a Memo field, however, if I enter more than 255 characters, the data is truncated when I save the data on the form.
The code that saves the form data to the table is as follows:
If Form_frmNotesVAE.NotesType = 2 then
with rsNotes
.AddNew
![SiteID] = Form_frmNotesVAE.SiteId
![NT_Date] = Form_frmNotesVAE.NT_Date
![NT_User] = Form_frmNotesVAE.NT_User
![NT_Memo] = Form_frmNotesVAE.NT_Memo
.Update
End With
DoCmd.Close acForm, acSaveNo
End If
I've researched this a lot and there seems to be no definitive fix...can anyone please assist and this is becoming more than a little frustrating.
Many thanks in advance
Steve
I'm using MS Access 2003 and I have a table which has a field called NT_Memo and as its name suggest, has a Data Type of Memo. My understanding is that under 2003 you can enter 65536 characters into a Memo field, however, if I enter more than 255 characters, the data is truncated when I save the data on the form.
The code that saves the form data to the table is as follows:
If Form_frmNotesVAE.NotesType = 2 then
with rsNotes
.AddNew
![SiteID] = Form_frmNotesVAE.SiteId
![NT_Date] = Form_frmNotesVAE.NT_Date
![NT_User] = Form_frmNotesVAE.NT_User
![NT_Memo] = Form_frmNotesVAE.NT_Memo
.Update
End With
DoCmd.Close acForm, acSaveNo
End If
I've researched this a lot and there seems to be no definitive fix...can anyone please assist and this is becoming more than a little frustrating.
Many thanks in advance
Steve