<!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>Thanks but repaint didn't seem to do
anything. No check mark.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Rocky</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<BLOCKQUOTE
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV
style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B>
<A title=KSEABOLT@parkcenter.org
href="mailto:KSEABOLT@parkcenter.org">KSEABOLT@parkcenter.org</A> </DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A title=accessd@databaseadvisors.com
href="mailto:accessd@databaseadvisors.com">Access Developers discussion and
problem solving</A> </DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Tuesday, September 02, 2003 4:07
PM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [AccessD] Check Box
Problem</DIV>
<DIV><BR></DIV><BR><FONT face=sans-serif size=2>How about a repaint before the
DoEvents?</FONT> <BR><BR><BR><BR>
<TABLE width="100%">
<TBODY>
<TR vAlign=top>
<TD>
<TD><FONT face=sans-serif size=1><B>"Rocky Smolin - Beach Access
Software" <<A
href="mailto:bchacc@san.rr.com">bchacc@san.rr.com</A>></B></FONT>
<BR><FONT face=sans-serif size=1>Sent by: <A
href="mailto:accessd-bounces@databaseadvisors.com">accessd-bounces@databaseadvisors.com</A></FONT>
<P><FONT face=sans-serif size=1>09/02/2003 05:49 PM</FONT> <BR><FONT
face=sans-serif size=1>Please respond to Access Developers discussion
and problem solving </FONT> <BR></P>
<TD><FONT face=Arial size=1> </FONT><BR><FONT
face=sans-serif size=1> To:
"Access Developers discussion and problem solving" <<A
href="mailto:accessd@databaseadvisors.com">accessd@databaseadvisors.com</A>></FONT>
<BR><FONT face=sans-serif size=1> cc:
</FONT> <BR><FONT face=sans-serif size=1>
Subject: Re: [AccessD]
Check Box Problem</FONT></TR></TBODY></TABLE><BR><BR><BR><FONT face=Arial
size=2>Rats. No soap. Tried it both before and after the call to
the delay function, and also as the first statement in the
fraYesNo_AfterUpdate() sub. But no check mark. Any other
thoughts?</FONT> <BR><FONT face="Times New Roman" size=3> </FONT>
<BR><FONT face=Arial size=2>Rocky</FONT> <BR><FONT face="Times New Roman"
size=3> </FONT> <BR><FONT face="Times New Roman" size=3>----- Original
Message ----- </FONT><BR><FONT face="Times New Roman" size=3><B>From:</B>
</FONT><A href="mailto:DWUTKA@marlow.com"><FONT face="Times New Roman"
color=blue size=3><U>Drew Wutka</U></FONT></A><FONT face="Times New Roman"
size=3> </FONT><BR><FONT face="Times New Roman" size=3><B>To:</B> </FONT><A
href="mailto:accessd@databaseadvisors.com"><FONT face="Times New Roman"
color=blue size=3><U>'Access Developers discussion and problem
solving'</U></FONT></A><FONT face="Times New Roman" size=3> </FONT><BR><FONT
face="Times New Roman" size=3><B>Sent:</B> Tuesday, September 02, 2003 3:28
PM</FONT> <BR><FONT face="Times New Roman" size=3><B>Subject:</B> RE:
[AccessD] Check Box Problem</FONT> <BR><BR><FONT face=Arial color=blue
size=2>Try a DoEvents statement, so that it allows the screen to refresh
before it moves.</FONT> <BR><FONT face="Times New Roman" size=3> </FONT>
<BR><FONT face=Arial color=blue size=2>Drew</FONT> <BR><FONT face=Tahoma
size=2>-----Original Message-----<B><BR>From:</B> Rocky Smolin - Beach Access
Software [mailto:bchacc@san.rr.com]<B><BR>Sent:</B> Tuesday, September 02,
2003 5:15 PM<B><BR>To:</B> </FONT><A
href="mailto:AccessD@databaseadvisors.com"><FONT face=Tahoma color=blue
size=2><U>AccessD@databaseadvisors.com</U></FONT></A><FONT face=Tahoma
size=2><B><BR>Subject:</B> [AccessD] Check Box Problem<BR></FONT><BR><FONT
face=Arial size=2>Dear List:</FONT> <BR><FONT face="Times New Roman"
size=3> </FONT> <BR><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. After making a selection the focus moves
to the 'Next Screen' command button. </FONT> <BR><FONT
face="Times New Roman" size=3> </FONT> <BR><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> <BR><FONT
face="Times New Roman" size=3> </FONT> <BR><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</FONT>
<BR><FONT face=Arial size=2>where delay is:</FONT> <BR><FONT
face="Times New Roman" size=3> </FONT> <BR><FONT face=Arial size=2>Public
Sub Delay()</FONT> <BR><FONT face="Times New Roman" size=3> </FONT>
<BR><FONT face=Arial size=2>Dim varstop As Variant</FONT> <BR><FONT
face="Times New Roman" size=3> </FONT> <BR><FONT face=Arial
size=2>varstop = Timer + gdblDelay</FONT> <BR><FONT face="Times New Roman"
size=3> </FONT> <BR><FONT face=Arial size=2>Do Until Timer >
varstop<BR>Loop</FONT> <BR><FONT face="Times New Roman" size=3> </FONT>
<BR><FONT face=Arial size=2>End Sub</FONT> <BR><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> <BR><FONT face="Times New Roman" size=3> </FONT> <BR><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> <BR><FONT face="Times New Roman" size=3> </FONT>
<BR><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> <BR><FONT
face="Times New Roman" size=3> </FONT> <BR><FONT face=Arial size=2>MTIA
and regards,</FONT> <BR><FONT face="Times New Roman" size=3> </FONT>
<BR><FONT face=Arial size=2>Rocky Smolin<BR>Beach Access Software</FONT>
<BR><FONT face=Arial size=2> </FONT>
<P>
<HR>
<P><FONT face="Times New Roman"
size=3>_______________________________________________<BR>AccessD mailing
list<BR>AccessD@databaseadvisors.com<BR>http://databaseadvisors.com/mailman/listinfo/accessd<BR>Website:
http://www.databaseadvisors.com</FONT><FONT face="Courier New"
size=2>_______________________________________________<BR>AccessD mailing
list<BR>AccessD@databaseadvisors.com<BR>http://databaseadvisors.com/mailman/listinfo/accessd<BR>Website:
http://www.databaseadvisors.com<BR></FONT>
<P>
<P>
<P>
<HR>
<P></P>_______________________________________________<BR>AccessD mailing
list<BR>AccessD@databaseadvisors.com<BR>http://databaseadvisors.com/mailman/listinfo/accessd<BR>Website:
http://www.databaseadvisors.com<BR></BLOCKQUOTE></BODY></HTML>