home *** CD-ROM | disk | FTP | other *** search
- Sub ctData1_ClickCenter ()
- Text1.Text = "Page Up"
- End Sub
-
- Sub ctData1_MouseCenter ()
- Text1.Text = "Page Up"
-
- End Sub
-
- Sub ctData1_MouseLeft ()
- Text1.Text = "Beginning of File"
- End Sub
-
- Sub ctData1_MouseRight ()
- Text1.Text = "Previous"
-
- End Sub
-
- Sub ctData2_MouseCenter ()
- Text1.Text = "Page Down"
- End Sub
-
- Sub ctData2_MouseLeft ()
- Text1.Text = "Next"
- End Sub
-
- Sub ctData2_MouseRight ()
- Text1.Text = "End of File"
- End Sub
-
- Sub ctData3_ClickLeft ()
- DataFrame(1).Visible = False
- DataFrame(2).Visible = False
- DataFrame(3).Visible = False
- DataFrame(0).Visible = True
- End Sub
-
- Sub ctData3_ClickRight ()
- If DataFrame(1).Visible = True Then
- DataFrame(1).Visible = False
- DataFrame(0).Visible = True
- End If
- If DataFrame(2).Visible = True Then
- DataFrame(2).Visible = False
- DataFrame(1).Visible = True
- End If
- If DataFrame(3).Visible = True Then
- DataFrame(3).Visible = False
- DataFrame(2).Visible = True
- End If
- End Sub
-
- Sub ctData4_ClickLeft ()
- If DataFrame(2).Visible = True Then
- DataFrame(2).Visible = False
- DataFrame(3).Visible = True
- End If
- If DataFrame(1).Visible = True Then
- DataFrame(1).Visible = False
- DataFrame(2).Visible = True
- End If
- If DataFrame(0).Visible = True Then
- DataFrame(0).Visible = False
- DataFrame(1).Visible = True
- End If
- End Sub
-
- Sub ctData4_ClickRight ()
- DataFrame(0).Visible = False
- DataFrame(1).Visible = False
- DataFrame(2).Visible = False
- DataFrame(3).Visible = True
- End Sub
-
- Sub DataFrame_MouseMove (Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
- Text1.Text = ""
- End Sub
-
- Sub Form_Load ()
- DataFrame(1).Visible = False
- DataFrame(2).Visible = False
- DataFrame(3).Visible = False
- DataFrame(0).Visible = True
- End Sub
-
- Sub Frame1_MouseMove (Button As Integer, Shift As Integer, X As Single, Y As Single)
- Text1.Text = ""
- End Sub
-
-