home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Ques3
- BackColor = &H00800080&
- BorderStyle = 3 'Fixed Double
- Caption = "Question 3"
- ClientHeight = 3705
- ClientLeft = 2025
- ClientTop = 1605
- ClientWidth = 6900
- ClipControls = 0 'False
- ControlBox = 0 'False
- Height = 4110
- Left = 1965
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MDIChild = -1 'True
- ScaleHeight = 3705
- ScaleWidth = 6900
- Top = 1260
- Width = 7020
- Begin CheckBox Check1
- BackColor = &H00800080&
- Caption = "Better printers"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 840
- TabIndex = 9
- Top = 840
- Width = 5895
- End
- Begin CheckBox Check2
- BackColor = &H00800080&
- Caption = "More data storage, so I don't have to achive to floppies"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 840
- TabIndex = 8
- Top = 1080
- Width = 5895
- End
- Begin CheckBox Check3
- BackColor = &H00800080&
- Caption = "Organizing agency documents for easier search and retreival"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 840
- TabIndex = 7
- Top = 1320
- Width = 5895
- End
- Begin CheckBox Check4
- BackColor = &H00800080&
- Caption = "E-mail survival software or other solutions"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 840
- TabIndex = 6
- Top = 1560
- Width = 5895
- End
- Begin CheckBox Check5
- BackColor = &H00800080&
- Caption = "Faxes to and from computer screen"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 840
- TabIndex = 5
- Top = 1800
- Width = 5895
- End
- Begin CommandButton Command1
- BackColor = &H00FFC0FF&
- Caption = "Next Question ->"
- Height = 495
- Left = 1920
- TabIndex = 4
- Top = 3120
- Width = 1815
- End
- Begin CommandButton Command2
- BackColor = &H00FFC0FF&
- Cancel = -1 'True
- Caption = "Cancel"
- Default = -1 'True
- Height = 495
- Left = 3960
- TabIndex = 3
- Top = 3120
- Width = 1695
- End
- Begin CheckBox Check8
- BackColor = &H00800080&
- Caption = "Voice mail"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 840
- TabIndex = 2
- Top = 2520
- Width = 5895
- End
- Begin CheckBox Check7
- BackColor = &H00800080&
- Caption = "Electronic distribution of materials to press"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 840
- TabIndex = 1
- Top = 2280
- Width = 5895
- End
- Begin CheckBox Check6
- BackColor = &H00800080&
- Caption = "Portable computing, so I can work anywhere"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 840
- TabIndex = 0
- Top = 2040
- Width = 5895
- End
- Begin Label Label1
- BackColor = &H00800080&
- Caption = "Mark the 3 projects that are most important for the agency
- s success"
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 360
- TabIndex = 10
- Top = 360
- Width = 6255
- End
- Sub Command1_Click ()
- question3 = ""
- anscount = 0
- If check1 = 1 Then
- question3 = question3 + "1;"
- anscount = anscount + 1
- End If
- If check2 = 1 Then
- question3 = question3 + "2;"
- anscount = anscount + 1
- End If
- If check3 = 1 Then
- question3 = question3 + "3;"
- anscount = anscount + 1
- End If
- If check4 = 1 Then
- question3 = question3 + "4;"
- anscount = anscount + 1
- End If
- If check5 = 1 Then
- question3 = question3 + "5;"
- anscount = anscount + 1
- End If
- If check6 = 1 Then
- question3 = question3 + "6;"
- anscount = anscount + 1
- End If
- If check7 = 1 Then
- question3 = question3 + "7;"
- anscount = anscount + 1
- End If
- If check8 = 1 Then
- question3 = question3 + "8;"
- anscount = anscount + 1
- End If
- If anscount > 3 Then
- MsgBox ("You may not select more than three options from the list")
- Exit Sub
- End If
- If question3 <> "" Then
- ques4.Show
- MsgBox ("Please answer the current question before moving on!")
- End If
- End Sub
- Sub Command2_Click ()
- response = MsgBox("Do you really want to close without sending in your responses?", 1, "Are you sure?")
- If response = 1 Then
- End
- End If
- End Sub
-