OT: test

2000-05-12 Thread Kenneth Beard

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

-- =_NextPart_001_01BFBC25.A1692E60
Content-Type: text/plain

just a test message


 
Ken Beard
Developer, Stampede Network
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  
(813)630-2762 ext. 246

-- =_NextPart_001_01BFBC25.A1692E60
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
HTML
HEAD
META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii"
META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.1960.3"
TITLEOT: test/TITLE
/HEAD
BODY

PFONT SIZE=3D2just a test message/FONT
/P
BR

PFONT SIZE=3D2nbsp;/FONT
BRFONT SIZE=3D2Ken Beard/FONT
BRFONT SIZE=3D2Developer, Stampede Network/FONT
BRFONT SIZE=3D2[EMAIL PROTECTED] lt;A =
HREF=3D"mailto:[EMAIL PROTECTED]" =
TARGET=3D"_blank"mailto:[EMAIL PROTECTED]/Agt;nbsp; =
/FONT
BRFONT SIZE=3D2(813)630-2762 ext. 246/FONT
/P

/BODY
/HTML
-- =_NextPart_001_01BFBC25.A1692E60--
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



OT:test

2000-05-12 Thread Kenneth Beard

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

-- =_NextPart_001_01BFBC42.C2B26D80
Content-Type: text/plain



 
Ken Beard
Developer, Stampede Network
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]  
(813)630-2762 ext. 246

-- =_NextPart_001_01BFBC42.C2B26D80
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
HTML
HEAD
META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii"
META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.1960.3"
TITLEOT:test/TITLE
/HEAD
BODY
BR
BR

PFONT SIZE=3D2nbsp;/FONT
BRFONT SIZE=3D2Ken Beard/FONT
BRFONT SIZE=3D2Developer, Stampede Network/FONT
BRFONT SIZE=3D2[EMAIL PROTECTED] lt;A =
HREF=3D"mailto:[EMAIL PROTECTED]" =
TARGET=3D"_blank"mailto:[EMAIL PROTECTED]/Agt;nbsp; =
/FONT
BRFONT SIZE=3D2(813)630-2762 ext. 246/FONT
/P

/BODY
/HTML
-- =_NextPart_001_01BFBC42.C2B26D80--
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: A replace question

2000-05-10 Thread Kenneth Beard

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

-- =_NextPart_001_01BFBAD3.69F193EE
Content-Type: text/plain

 Subject: A replace question


 How can I dynamically convert:

 d:\songs\..\drip\manual.txt

 to:

 d:\drip\manual.txt

try something like

cfset uppos=listfind(pathstring,"..","\")
cfif uppos gt 0
cfset pathstring=listdeleteat(pathstring,uppos,"\")
cfset pathstring=listdeleteat(pathstring,(uppos-1),"\")
/cfif


 or:

 d:\Songs\Music\K\..\B\Buffett, Jimmy\Song.mp3

 to:

 d:\Songs\Music\B\Buffett, Jimmy\Song.mp3

 ?

 I'm having a complete brain lapse!


 Russel Madere, Jr.
 Web Developer
 TurboSquid

 "Be good and you will be lonesome.
  Be lonesome and you will be free.
  Live a lie and you will live to regret it."
   Jimmy Buffett
   That's What Living Is To Me
 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
the body.




--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

-- =_NextPart_001_01BFBAD3.69F193EE
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
HTML
HEAD
META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii"
META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.1960.3"
TITLERE: A replace question/TITLE
/HEAD
BODY

PFONT SIZE=3D2gt; Subject: A replace question/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; How can I dynamically convert:/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; d:\songs\..\drip\manual.txt/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; to:/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; d:\drip\manual.txt/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2try something like/FONT
/P

PFONT SIZE=3D2lt;cfset =
uppos=3Dlistfind(pathstring,quot;..quot;,quot;\quot;)gt;/FONT
BRFONT SIZE=3D2lt;cfif uppos gt 0gt;/FONT
BRFONT SIZE=3D2lt;cfset =
pathstring=3Dlistdeleteat(pathstring,uppos,quot;\quot;)gt;/FONT
BRFONT SIZE=3D2lt;cfset =
pathstring=3Dlistdeleteat(pathstring,(uppos-1),quot;\quot;)gt;/FONT=

BRFONT SIZE=3D2lt;/cfifgt;/FONT
/P
BR

PFONT SIZE=3D2gt; or:/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; d:\Songs\Music\K\..\B\Buffett, =
Jimmy\Song.mp3/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; to:/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; d:\Songs\Music\B\Buffett, Jimmy\Song.mp3/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; ?/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; I'm having a complete brain lapse!/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; Russel Madere, Jr./FONT
BRFONT SIZE=3D2gt; Web Developer/FONT
BRFONT SIZE=3D2gt; TurboSquid/FONT
BRFONT SIZE=3D2gt;/FONT
BRFONT SIZE=3D2gt; quot;Be good and you will be lonesome./FONT
BRFONT SIZE=3D2gt;nbsp; Be lonesome and you will be free./FONT
BRFONT SIZE=3D2gt;nbsp; Live a lie and you will live to regret =
it.quot;/FONT
BRFONT =
SIZE=3D2gt;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp=
;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp=
;nbsp;nbsp;nbsp;nbsp; Jimmy Buffett/FONT
BRFONT =
SIZE=3D2gt;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp=
;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp=
;nbsp;nbsp;nbsp;nbsp; That's What Living Is To Me/FONT
BRFONT SIZE=3D2gt; =
--/FONT=

BRFONT SIZE=3D2gt; /FONT
BRFONT SIZE=3D2gt; Archives: A =
HREF=3D"http://www.eGroups.com/list/cf-talk" =
TARGET=3D"_blank"http://www.eGroups.com/list/cf-talk/A/FONT
BRFONT SIZE=3D2gt; To Unsubscribe visit/FONT
BRFONT SIZE=3D2A =
HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlistsbody=3Dli=
sts/cf_talk" =
TARGET=3D"_blank"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
body=3Dlists/cf_talk/A or/FONT
BRFONT SIZE=3D2send a message to [EMAIL PROTECTED] =
with 'unsubscribe' in/FONT
BRFONT SIZE=3D2the body./FONT
/P
BR

PFONT =
SIZE=3D2---=
-/FONT
BRFONT SIZE=3D2--/FONT
BRFONT SIZE=3D2Archives: A =
HREF=3D"http://www.eGroups.com/list/cf-talk" =
TARGET=3D"_blank"http://www.eGroups.com/list/cf-talk/A/FONT

Good CF Text for brochure

2000-04-28 Thread Kenneth Beard

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

-- =_NextPart_000_01BFB147.2CAD1C00
Content-Type: multipart/alternative;
boundary=" =_NextPart_001_01BFB147.2CAD1C00"


-- =_NextPart_001_01BFB147.2CAD1C00
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Anybody come across a really good blurb about cold fusion and why you
want your application's backbone written in it?=A0 I've looked on
houseoffusion.com, cfadvisor.com and allaire.com and the stuff there is
ok, but=A0is more oriented to selling the developer on it that to =
selling
the end user/client on it.=A0=20
Thanks
=A0
Ken Beard
Developer, Stampede Network
[EMAIL PROTECTED]=20
(813)630-2762 ext. 246

-- =_NextPart_001_01BFB147.2CAD1C00
Content-Type: text/html;
charset="iso-8859-1"

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
HTMLHEAD
META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"


STYLEBODY {
COLOR: #00; FONT-FAMILY: arial; FONT-SIZE: 12pt; MARGIN-LEFT: 8em
}
/STYLE

META content="MSHTML 5.00.2919.6307" name=GENERATOR/HEAD
BODY background=cid:562351519@28042000-3707
DIVSPAN class=562351519-28042000Anybody come across a really good blurb 
about cold fusion and why you want your application's backbone written in 
it?nbsp; I've looked on house/SPANFONT face="Arial Narrow"FONT 
face=ArialSPAN class=562351519-28042000offusion/SPANSPAN 
class=562351519-28042000.com, cfadvisor.com and allaire.com and the stuff there 
is ok, butnbsp;/SPANSPAN class=562351519-28042000is more oriented to 
selling the developer on it that to selling the en/SPANSPAN 
class=562351519-28042000d user/client on it.nbsp; /SPAN/FONT/FONT/DIV
DIVFONT face="Arial Narrow"FONT face=ArialSPAN 
class=562351519-28042000/SPAN/FONTSPAN 
class=562351519-28042000Thanks/SPAN/FONT/DIV
DIVFONT face="Arial Narrow"SPAN 
class=562351519-28042000/SPAN/FONTnbsp;/DIV
DIVFONT face="Arial Narrow"SPAN class=562351519-28042000/SPANKen 
Beard/FONT/DIV
DIVFONT face="Arial Narrow"Developer, /FONTFONT 
face="Arial Narrow"Stampede Network/FONT/DIV
DIVFONT face="Arial Narrow"A 
href="mailto:[EMAIL PROTECTED]"[EMAIL PROTECTED]/A 
/FONT/DIV
DIVFONT face="Arial Narrow"(813)630-2762 ext. 246/FONT/DIV/BODY/HTML

-- =_NextPart_001_01BFB147.2CAD1C00--

-- =_NextPart_000_01BFB147.2CAD1C00
Content-Type: image/gif;
name="Chess.gif"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="Chess.gif"

R0lGODlhQAZlAPcAAP7+/v39/fz8/Pv7+/r6+vn5+fj4+Pf39/b29vX19fT09PPz8/Ly8vHx
8fDw8O/v7+7u7u3t7ezs7Ovr6+rq6unp6ejo6Ofn5+bm5uXl5ePj4+Li4uHh4eDg4N/f397e3t3d
3dzc3Nvb29ra2tnZ2djY2NfX19bW1tXV1dTU1NPT09LS0tHR0dDQ0M/Pz87Ozs3NzczMzMvLy8rK
ysnJycjIyMfHx8bGxsXFxcTExMPDw8LCwsHBwcDAwL+/v76+vr29vby8vLu7u7q6urm5ubi4uLe3
t7a2trW1tbS0tLOzs7KysrGxsbCwsK+vr66urq2traysrKurq6mpqaioqKenp6ampqWlpaSk
pKOjo6KioqGhoaCgoJ+fn56enp2dnZycnJubm5qampmZmZiYmJeXl5aWlpWVlZSUlJOTk5KSkpGR
kZCQkI+Pj46Ojo2NjYyMjIuLi4qKiomJiYiIiIeHh4aGhoWFhYSEhIODg4KCgoGBgYCAgH9/f35+
fgAA





ACwAQAZlAEAI/wBvXPlC
sKDBgwgTKlxY8M2XK0duvDjxoaLFixgzntj44sWNHz+OPLky8Mybk3dS3nlz5ckPihAQIABAs6bN
mzhz6tzJs6fPn0CDCh1KtKjRo0iTKl3KtKnTp1CjSp1KtarVq1izat3KtavXr2DDih1LtqzZs2hz
nvD4YyRBk29S/pl75wzDu3ffnIH4YyLFjIADC764cW3HGxgSx5yZtrHjx5AjS55MubLly5gza97M
ubPnz6BDmxVc2PDHkCNLmlQ5909dvAb18vU7uLZtwaJz697Nu7fv38CDCx9OvLjx48jT3rZd+jBI
kQO/wGVN1+TeI303Lt9+O7n37+DDi/8fT768+fPo06tHzr194OYeP8L+csR9+/X48+vfz7+///8A
BijggETZZyBpJ8yn4Bc/2EfggxBGKOGEFFZo4YUY9nfghhhttOCHsN1gUYYklmjiiSimqOKKLJqI
1xN/cYggiDTCNhEGEMTU4o489ujjj0AGKeSQT9Wo0BExbuehkUwm5NILH2AgE5FUVmnllVhmqeWW
wzVpJJIVLenlmE9GOSWXaKap5ppstunmmziNSaZbq90xl0NywlamlIzB6eefgAYq6KCElpdnk3p9
8URENzT60RHQvYWSna3hyeSeZxaq6aacdurpp6BidSiTsmFH22CFHXbaE25JN2lrf1j/ehCmfYZq
66245qrrrmy+EFJJKtk1KkOlZpfkgRSlGl9I0EUH0g0n4Jgpr9RWa+212GYLoEUcsYUaSdLVSalr
wpJ6nbEyuqftuuy26+678Oqm5AfKettsuHHJVZ1CxZ6a7nbxBizwwAQXbDBU/wIG32n3SpcQmAkv
d/DEFFds8cXrRmygmDQ2+C/GIIcs8sgkr6mxfRwPa5DHuJXs8sswxyxzhQbBeDJzCaoM4rQz9+zz
z0AHLVyNNqebss56RgQTz0I37fTTUEftFdIFQfxezlQrSKvUXHft9ddg/5S1gh9FNzZDW4et9tps
ty3z2bAl+lBBZ0w3bqw6p+323nz3/+33u3Dj1a92YXbbKLOt2g2rrC/2ZWatf0cu+eSUF3pD4MSe
6y93yh4uEp12q3RHS47zWfnpqKeuOpYeHVES5rFpTjiyhq8K+kknLep4jpCv7vvvwAdPIVsj1dna
a1kPfuy/nT8KqV+K9S789NRXb315HHnuumr5jou8nMrffPUJMpV//fnop68+cB12/lxq+FJHbo3h
i9/y+vjnr//+lN1WL8OJE9fxyrWQ+tkPMPxLoAIXyECtbIxehrEXq94iwH01RHbLO2BFGsjBDnrw