<!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>Dear List:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>I have an app that is basically a
questionnaire. Most questions display an option frame with check
boxes labeled Yes and No. </FONT><FONT face=Arial size=2>After making
a selection the focus moves to the 'Next Screen' command button.
</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Then I added an 'Auto Advance' feature where the
program automatically advances to the next question after a 1/2 second
delay.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Private Sub
fraYesNo_AfterUpdate()<BR> If fraAutoAdvance = 1
Then<BR> Call
Delay<BR> Call
cmdNextQuestion_Click<BR> End If<BR>End Sub<BR></FONT></DIV>
<DIV><FONT face=Arial size=2>where delay is:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Public Sub Delay()</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Dim varstop As Variant</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>varstop = Timer + gdblDelay</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Do Until Timer > varstop<BR>Loop</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>End Sub<BR></FONT></DIV>
<DIV><FONT face=Arial size=2>When the question is first displayed, both the Yes
and the No check boxes have a gray background. Without the auto advance,
the focus moves to the Next Screen button and the check mark dutifully appears
in the proper box. </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>The problem is that when the user is using the
Auto-Advance feature the clicked check box remains gray, the unclicked check box
turns white, and after 1/2 second the next screen appears. So it's a bit
confusing to the eye.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>I cannot figure out a way to make the check mark
appear in the box. Anyone see what' I'm doing wrong?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>MTIA and regards,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Rocky Smolin<BR>Beach Access Software</FONT></DIV>
<DIV><FONT face=Arial size=2> </DIV></FONT></BODY></HTML>