<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18928">
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT size=2 face=Arial>Maggie,</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>Here's an extended solution using two digits 
contained in group boxes and the starting number selected with a numeric 
updown:</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial><IMG border=0 hspace=0 alt="" align=baseline 
src="cid:D6E9996AC8B3430297DE30E6AF7E1A7A@your9431d622db"></FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>
<P>Public</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT 
color=#0000ff size=2>Class</FONT></FONT><FONT size=2> Form1</FONT><FONT 
size=2></P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; Private</FONT></FONT><FONT size=2> Num </FONT><FONT 
color=#0000ff size=2><FONT color=#0000ff size=2>As</FONT></FONT><FONT size=2> 
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>Integer</FONT></FONT><FONT size=2> = 99</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; Private</FONT></FONT><FONT size=2> </FONT><FONT 
color=#0000ff size=2><FONT color=#0000ff size=2>Sub</FONT></FONT><FONT size=2> 
tmrCount_Tick(</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>ByVal</FONT></FONT><FONT size=2> sender </FONT><FONT color=#0000ff 
size=2><FONT color=#0000ff size=2>As</FONT></FONT><FONT size=2> System.Object, 
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>ByVal</FONT></FONT><FONT size=2> e </FONT><FONT color=#0000ff 
size=2><FONT color=#0000ff size=2>As</FONT></FONT><FONT size=2> 
System.EventArgs) </FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>Handles</FONT></FONT><FONT size=2> tmrCount.Tick</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Dim</FONT></FONT><FONT size=2> obj 
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>As</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT 
color=#0000ff size=2>Object</P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Dim</FONT></FONT><FONT size=2> 
TensDigit </FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>As</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT 
color=#0000ff size=2>Integer</FONT></FONT><FONT size=2> = Num \ 10</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Dim</FONT></FONT><FONT size=2> 
UnitsDigit </FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>As</FONT></FONT><FONT size=2> </FONT><FONT color=#0000ff size=2><FONT 
color=#0000ff size=2>Integer</FONT></FONT><FONT size=2> = Num </FONT><FONT 
color=#0000ff size=2><FONT color=#0000ff size=2>Mod</FONT></FONT><FONT size=2> 
10</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; For</FONT></FONT><FONT size=2> 
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>Each</FONT></FONT><FONT size=2> obj </FONT><FONT color=#0000ff 
size=2><FONT color=#0000ff size=2>In</FONT></FONT><FONT size=2> 
grpTens.Controls</P>
<P>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; obj.Visible = 
obj.Tag.Contains(TensDigit)</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Next</P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; For</FONT></FONT><FONT size=2> 
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>Each</FONT></FONT><FONT size=2> obj </FONT><FONT color=#0000ff 
size=2><FONT color=#0000ff size=2>In</FONT></FONT><FONT size=2> 
grpUnits.Controls</P>
<P>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; obj.Visible = 
obj.Tag.Contains(UnitsDigit)</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Next</P></FONT></FONT><FONT size=2>
<P>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Num -= 1</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; If</FONT></FONT><FONT size=2> Num 
&lt; 0 </FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>Then</P></FONT></FONT><FONT size=2>
<P>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; tmrCount.Stop()</P>
<P>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; updStartNum.Value = 
99</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; End</FONT></FONT><FONT size=2> 
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>If</P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; End</FONT></FONT><FONT size=2> </FONT><FONT 
color=#0000ff size=2><FONT color=#0000ff size=2>Sub</FONT></FONT></P>
<P><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;</P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; Private</FONT></FONT><FONT size=2> </FONT><FONT 
color=#0000ff size=2><FONT color=#0000ff size=2>Sub</FONT></FONT><FONT size=2> 
btnStart_Click(</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>ByVal</FONT></FONT><FONT size=2> sender </FONT><FONT color=#0000ff 
size=2><FONT color=#0000ff size=2>As</FONT></FONT><FONT size=2> System.Object, 
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>ByVal</FONT></FONT><FONT size=2> e </FONT><FONT color=#0000ff 
size=2><FONT color=#0000ff size=2>As</FONT></FONT><FONT size=2> 
System.EventArgs) </FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>Handles</FONT></FONT><FONT size=2> btnStart.Click</P>
<P>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; tmrCount.Start()</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; End</FONT></FONT><FONT size=2> </FONT><FONT 
color=#0000ff size=2><FONT color=#0000ff size=2>Sub</FONT></FONT></P>
<P><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;</P></FONT></FONT><FONT size=2>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; Private</FONT></FONT><FONT size=2> </FONT><FONT 
color=#0000ff size=2><FONT color=#0000ff size=2>Sub</FONT></FONT><FONT size=2> 
updStartNum_ValueChanged(</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>ByVal</FONT></FONT><FONT size=2> sender </FONT><FONT color=#0000ff 
size=2><FONT color=#0000ff size=2>As</FONT></FONT><FONT size=2> System.Object, 
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>ByVal</FONT></FONT><FONT size=2> e </FONT><FONT color=#0000ff 
size=2><FONT color=#0000ff size=2>As</FONT></FONT><FONT size=2> 
System.EventArgs) </FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>Handles</FONT></FONT><FONT size=2> updStartNum.ValueChanged</P>
<P>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Num = updStartNum.Value</P>
<P></FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>&nbsp;&nbsp;&nbsp; End</FONT></FONT><FONT size=2> </FONT><FONT 
color=#0000ff size=2><FONT color=#0000ff size=2>Sub</FONT></FONT></P>
<P><FONT color=#0000ff size=2><FONT color=#0000ff size=2>End</FONT></FONT><FONT 
size=2> </FONT><FONT color=#0000ff size=2><FONT color=#0000ff 
size=2>Class</P></FONT></FONT></FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>regards,</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>Graeme</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT size=2 face=Arial>----- Original Message ----- </FONT>
<DIV><FONT size=2 face=Arial>From: "Maggie" &lt;</FONT><A 
href="mailto:iaquinto@ozemail.com.au"><FONT size=2 
face=Arial>iaquinto@ozemail.com.au</FONT></A><FONT size=2 
face=Arial>&gt;</FONT></DIV>
<DIV><FONT size=2 face=Arial>To: "VBasic" &lt;</FONT><A 
href="mailto:vbasic@edulists.com.au"><FONT size=2 
face=Arial>vbasic@edulists.com.au</FONT></A><FONT size=2 
face=Arial>&gt;</FONT></DIV>
<DIV><FONT size=2 face=Arial>Sent: Sunday, June 20, 2010 6:46 PM</FONT></DIV>
<DIV><FONT size=2 face=Arial>Subject: [Visual Basic] how to run a set of click 
events or procedures</FONT></DIV></DIV>
<DIV><FONT face=Arial><BR><FONT size=2></FONT></FONT></DIV><FONT size=2 
face=Arial>&gt;I am using one of Adrian Janson's exercises - similar to the LCD 
<BR>&gt; display. In this exercise you can click on a 3 and it shows the numeral 
<BR>&gt; three highlighted by several rectangles to appear as the 
number.<BR>&gt; <BR>&gt; I want to show a countdown - yes I can do a countdown 
with a timer and <BR>&gt; output the countdown in a label as in: 10 - 9 - 8 etc. 
- but this is <BR>&gt; different.<BR>&gt; <BR>&gt; What I would like to do is to 
run all these click events to show a <BR>&gt; countdown.<BR>&gt; <BR>&gt; So the 
click event for 8 has its own sequence of statements; the click <BR>&gt; event 
for 7 has its own, etc.<BR>&gt; <BR>&gt; I want a button to run the coding for 
each of these click events.<BR>&gt; <BR>&gt; How do I do that?<BR>&gt; <BR>&gt; 
Maggie<BR>&gt; _______________________________________________<BR>&gt; </FONT><A 
href="http://www.edulists.com.au"><FONT size=2 
face=Arial>http://www.edulists.com.au</FONT></A><FONT size=2 face=Arial> - FAQ, 
resources, subscribe, unsubscribe<BR>&gt; Vbasic Mailing List kindly supported 
by<BR>&gt; </FONT><A href="http://www.vcaa.vic.edu.au"><FONT size=2 
face=Arial>http://www.vcaa.vic.edu.au</FONT></A><FONT size=2 face=Arial> - 
Victorian Curriculum and Assessment Authority and<BR>&gt; </FONT><A 
href="http://www.vitta.org.au"><FONT size=2 
face=Arial>http://www.vitta.org.au</FONT></A><FONT size=2 face=Arial>&nbsp; - 
VITTA Victorian Information Technology Teachers Association 
Inc<BR>&gt;</FONT></BODY></HTML>