1 / 8

Process Flow July 10, 2001

Process Flow July 10, 2001. Process Flow. Linear On Count On Event. Linear Flow. Start Housekeep – Initialize Procedure steps End Keep Stop. Private Sub cmdBox_Click. Dim intNum As Integer intNum = Val(Text1.Text) Label1.Caption = Format(intNum, “standard”) End Sub. Loop on Count.

jatin
Télécharger la présentation

Process Flow July 10, 2001

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Process FlowJuly 10, 2001

  2. Process Flow • Linear • On Count • On Event

  3. Linear Flow • Start • Housekeep – Initialize • Procedure steps • End Keep • Stop

  4. Private Sub cmdBox_Click • Dim intNum As Integer • intNum = Val(Text1.Text) • Label1.Caption = Format(intNum, “standard”) • End Sub

  5. Loop on Count • House Keep – Initialize • Get Number of Times • Loop That Many Times • Procedure Steps • End Loop • End Keep

  6. Loop on Count • Dim intNum, I As Integer • intNum = Val(Text1.Text) • For I = 1 To intNum • Print I • Next I • End Sub

  7. Loop On Event • House Keep – Initialize • Obtain Stop Event Status • Loop if Not Stop Event • Procedure Steps • Obtain Stop Event Status • End Loop • End Keep

  8. Loop On Event • Dim intTot, intAdd As Integer • Dim strIn as String • intTot = 0 • strIn = InputBox(“Enter Number or STOP”) • Do While Ucase(strIn) <> “STOP” • intTot = intTot + Val(strIn) • strIn = InputBox(“Enter Number or STOP”) • End Do • Print intTot

More Related