I think so
--
Val Mazur
Microsoft MVP
Quote:
> ah - thanks -I was using .value
> - does that mean I can use append chunk in ASP ?
> > Hi,
> > To be able to use memo fileds you need to use AppendChunk anf GetChunk
> > methods of field. Those methods work with any BLOB fields. If you use
> value
> > proprty, then value will be truncated to 255 (in case of Access)
> characters,
> > because Access has limit on length of string fields - 255 characters.
> > --
> > Val Mazur
> > Microsoft MVP
> > > Hello,
> > > I have a vbscript / Access2000 ASP application with some memo
> > > fields that get passed into queries. I'm finding my data is getting
> > > truncated
> > > if its more than about 255 bytes, and trying to diagnose where the
> problrm
> > > lies.
> > > it could be Access 2000 not allowing more than 255 chars in a query
> > string,
> > > even if its pulled from a memo field,
> > > or it could be ASP itself, not allowing streams of more than 255
chars?
> > > any advice ?
> > > thanks.