From jacobson@CNS.UNI.EDU Tue Nov 7 16:39:45 2000 Date: Tue, 07 Nov 2000 16:36:31 -0600 (CST) From: Mark Jacobson To: 810-022-01@uni.edu Subject: Thursday hands-on class... Hi 022 students, According to the syllabus, November 9th is a hands on class. We will meet in the WRT 112 lab instead of the classroom. The handout from last Thursday's hands on class includes two statements in the Sub processRecord(): Set recClone = Me.RecordsetClone recClone.Bookmark = Me.Bookmark ' save position ... 17 lines of VBA code... ... Me.Bookmark = recClone.Bookmark ' return to position Try to figure out why these three statements are needed, now that you know or have a basis to guess what they do. We may not get to that on Thursday, but will discuss that next Thursday. If you need the handout from last Thursday's class, it is taped to my office door. I forgot to bring them to class today, including the overheads. We will discuss it next Tuesday. Your PERL and FORM page of 22 questions should be ready by one week from today, Tuesday, November 14th. The 25 questions that are based on the two different Access PowerPoint presentations are easily answered by using the http://www.cns.uni.edu/~jacobson/c030.html class web page to link to the material the questions are based upon. Regarding the ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); ----- statement from today's handout, the $year variable OBVIOUSLY would be 100 instead of 0! It represents the years since 1900! Excuse the McFly incident! :-) ----- $theYear = 1900 + $year; $nextYear = $theYear + 1; print "
Its days $yday of year $theYear. Only $daysLeft days till"; print " $nextYear!\n

"; Mark