I have a text box, unbound which i use the insert statement to get info into the table.
I had a problem when clicking on the list box and the memo field was TRUNCATED to about 255 characters, that was fixed by using Dlookup which now works.
HOWEVER, the insert and update statement only appear to be placing about +-500 characters ( and ends like this det????)
Can you please help???
If anyone knows where i could get some good info on setting up an unbound object frame, would be greatly appreciated as well..
Thx
Darin
I had a problem when clicking on the list box and the memo field was TRUNCATED to about 255 characters, that was fixed by using Dlookup which now works.
HOWEVER, the insert and update statement only appear to be placing about +-500 characters ( and ends like this det????)
Code:
DoCmd.SetWarnings False
Dim sqlStr As String
sqlStr = " INSERT INTO tblBackUpInvoicing(TransID,UploadNo,Invs,WeDt,CrnNo,Crn,Faxed,FaxDt,FollowUp,Uploaded,UploadDt,ClientNo,ClientJob,ContactTo,DescripShort,DescripLong) VALUES (tTransID,tUploadNo,tInvNo,tWE,tCrnNo,chkCRN,chkFax,tFaxDt,chkFollowUp,chkUploaded,tUploadDt,tClient,tJob,cmbNameTo,tShortDesc,tDescrip)"
DoCmd.RunSQL sqlStr
Me.lstInvoicing.Requery
'Me.lstInvoicing.Selected(10) = True
DoCmd.SetWarnings True
Can you please help???
If anyone knows where i could get some good info on setting up an unbound object frame, would be greatly appreciated as well..
Thx
Darin