Re: DAO Question
- From: "Steve Gerrard" <mynamehere@xxxxxxxxxxx>
- Date: Sat, 25 Feb 2006 08:34:40 -0800
"J. Novotny" <team@xxxxxxxxxxxxx> wrote in message
news:1140851582.485105.147810@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Hi Jennifer, thank you for your reply!
dbMemo (not dbMenu) is actually the data type and it's Access database.
It should handle unlimited number of characters if I am right, but it
does not for me.
For liFt = 1 To Len(frmMain.rtfNotes.TextRTF) Step 64000
odToDoLists!Notes.AppendChunk Mid$(frmMain.rtfNotes.TextRTF,
liFt, 64000)
Next liFt
You should be able to assign Megs of data to a Memo field if you want to.
I would try two things. First, try dropping the loop and assigning the whole
thing at once:
odToDoLists!Notes = frmMain.rtfNotes.TextRTF
Second, if you want to use the ApppendChunk loop, try adding
odToDoLists!Notes = ""
before the For loop, to clear the field before appending.
Are you sure the error is caused by the Memo field? "Crashes" is not very
informative; what error is raised, or what exactly happens?
.
- Follow-Ups:
- Re: DAO Question
- From: J. Novotny
- Re: DAO Question
- References:
- DAO Question
- From: J. Novotny
- Re: DAO Question
- From: Jennifer
- Re: DAO Question
- From: J. Novotny
- DAO Question
- Prev by Date: Re: Newbie...
- Next by Date: Re: What is the status of VB6 & DOT.NET ?
- Previous by thread: Re: DAO Question
- Next by thread: Re: DAO Question
- Index(es):
Relevant Pages
|