RE: Outputing part of memo field

2003-01-03 Thread Owens, Howard
Terry, let us know the performance results, please. H. > -Original Message- > From: Terry [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, January 02, 2003 8:11 PM > To: CF-Talk > Subject: RE: Outputing part of memo field > > Thanks all for your help. >

RE: Outputing part of memo field

2003-01-02 Thread Terry
ge- >> From:Owens, Howard [SMTP:[EMAIL PROTECTED]] >> Sent: Thursday, January 02, 2003 5:51 PM >> To: CF-Talk >> Subject: RE: Outputing part of memo field >> >> I thought this might be a good chance to try making my FIRST UDF ... so >> d

RE: Outputing part of memo field

2003-01-02 Thread Owens, Howard
ard [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, January 02, 2003 5:51 PM > To: CF-Talk > Subject: RE: Outputing part of memo field > > I thought this might be a good chance to try making my FIRST UDF ... so > did > this (tested and works for me) > > > > >

RE: Outputing part of memo field

2003-01-02 Thread Owens, Howard
At(newstr, getStrLen, " "); return newstr; } > -Original Message- > From: Owens, Howard [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, January 02, 2003 5:31 PM > To: CF-Talk > Subject: RE: Outputing part of memo field > > Here&#

RE: Outputing part of memo field

2003-01-02 Thread Samuel Neff
tputing part of memo field > > > Here's a suggestion: > > > > > > > > > #theString# > Full Story > > > > > > -Original Message- > > From: Terry [SMTP:[EMAIL PROTECTED]] > > Sent: Thursday, Ja

RE: Outputing part of memo field

2003-01-02 Thread Owens, Howard
Here's a suggestion: #theString# Full Story > -Original Message- > From: Terry [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, January 02, 2003 4:56 PM > To: CF-Talk > Subject: Outputing part of memo field > > I need to output only about the 1s

Re: Outputing part of memo field

2003-01-02 Thread Jochem van Dieten
Terry wrote: > That also seems to break it in the middle of a word. Sorry: #REReplace(Left(String,150),"^(.* ).*","\1")# Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.hou

Re: Outputing part of memo field

2003-01-02 Thread Terry
That also seems to break it in the middle of a word. *** REPLY SEPARATOR *** On 1/3/2003 at 2:07 AM Jochem van Dieten wrote: >Terry wrote: >> I need to output only about the 1st 150 characters of a memo field, but >want to break it at a space and then have a link to the entire s

RE: Outputing part of memo field

2003-01-02 Thread Tony Weeg
ok, so, how about this... #Left(yourString,'#firstSpace#')# (continued) :) tony -Original Message- From: Terry [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 02, 2003 8:05 PM To: CF-Talk Subject: RE: Outputing part of memo field T

Re: Outputing part of memo field

2003-01-02 Thread Jochem van Dieten
Terry wrote: > I need to output only about the 1st 150 characters of a memo field, but want to >break it at a space and then have a link to the entire story. #REReplace(Left(String,150),"^(.* )","\1")# Jochem ~| Archives: http:

RE: Outputing part of memo field

2003-01-02 Thread Terry
---Original Message- >From: Terry [mailto:[EMAIL PROTECTED]] >Sent: Thursday, January 02, 2003 7:56 PM >To: CF-Talk >Subject: Outputing part of memo field > > >I need to output only about the 1st 150 characters of a memo field, but >want to break it at a space and then have a

RE: Outputing part of memo field

2003-01-02 Thread Tony Weeg
#Left(yourString,'150')# (continued) hth tony -Original Message- From: Terry [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 02, 2003 7:56 PM To: CF-Talk Subject: Outputing part of memo field I need to output only about the 1st 150 characters of a memo field, b

Outputing part of memo field

2003-01-02 Thread Terry
I need to output only about the 1st 150 characters of a memo field, but want to break it at a space and then have a link to the entire story. I know I can figure this out, but if anyone can help me save a few hours I'd appreciate it. thx ~~