<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1226" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Liam,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>FWIW, here's something you could try.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>1) Place an unbound Text Box on the form and name 
it something like txtMarquee.</FONT></DIV>
<DIV><FONT face=Arial size=2>2) Set the form's Timer Interval to, say, 200 
milliseconds.</FONT></DIV>
<DIV><FONT face=Arial size=2>3) In the form's Load event procedure put this 
line of code:</FONT></DIV>
<DIV><FONT face=Arial size=2>    txtMarquee = "Eat at Joe's...Eat 
at Joe's...Eat at Joe's..."</FONT></DIV>
<DIV><FONT face=Arial size=2>4) In the form's Timer event procedure put this 
code:</FONT></DIV>
<DIV><FONT face=Arial size=2>   Dim str As String<BR>   str 
= txtMarquee<BR>   txtMarquee = Right(str, Len(str) - 1) & 
Left(str, 1)<BR></FONT><FONT face=Arial size=2>5) Save and run the 
form.</DIV></FONT><FONT face=Arial size=2>
<DIV><BR>Regards,</DIV>
<DIV> </DIV>
<DIV>Steve Erbach<BR>Scientific Marketing<BR>Neenah, WI</DIV>
<DIV> </DIV>
<DIV>"The press must learn that misguided use of a computer is no more amazing 
than drunk driving of an automobile." - Ken Thompson (co-inventor of UNIX), 
1984</FONT></DIV></BODY></HTML>