Date: Mon, 12 Sep 2005 12:10:05 -0500 (CDT) From: Mark Jacobson To: 810-030-01@uni.edu Subject: Random circles assignment #2... Hi Visual Basic students, We will NOT have a hands-on class this week. We'll spend the next two classes, Wednesday and Friday, covering the concepts you will want to understand as you do Assignment #2. Assignment #2 will not be due until 5 p.m. on Monday, September 19th, in case you need to have any more questions or clarifications needed on Monday during class. We'll cover For Next loops on Wednesday, as well as the PSet() METHOD for drawing on the Form, which is like the Print METHOD for writing or printing Text on the form. We will also cover Subs that are NOT EVENT procedures or SUBroutines or SUBprograms. Private Sub cmdPrintHello_Click() <--- is an EVENT procedure or SUB. Sub drawOneCircle() <---------- is NOT an event procedure. We already did a For Next loop in the Excel VBA labs... For i = 1 to 72 rotate the WordArt 5 degrees Next i Mark