home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form4
- BorderStyle = 3 'Fixed Double
- Caption = "Hot Graph Example"
- ControlBox = 0 'False
- Height = 3960
- Left = 1056
- LinkTopic = "Form4"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3216
- ScaleWidth = 7632
- Top = 1476
- Width = 7728
- Begin CommandButton Command1
- Caption = "Exit"
- Height = 372
- Left = 5760
- TabIndex = 6
- Top = 2280
- Width = 852
- End
- Begin GRAPH Graph1
- Height = 2292
- Hot = 1 'On
- Left = 360
- TabIndex = 1
- Top = 600
- Width = 4692
- End
- Begin Label Label5
- Alignment = 2 'Center
- Caption = "Click on a graph Point"
- Height = 252
- Left = 360
- TabIndex = 6
- Top = 120
- Width = 7092
- End
- Begin Label Label4
- Caption = " "
- Height = 252
- Left = 6480
- TabIndex = 5
- Top = 1800
- Width = 492
- End
- Begin Label Label3
- Caption = " "
- Height = 252
- Left = 6480
- TabIndex = 4
- Top = 1200
- Width = 492
- End
- Begin Label Label2
- Caption = "Set #"
- Height = 252
- Left = 5400
- TabIndex = 3
- Top = 1800
- Width = 732
- End
- Begin Label Label1
- Caption = "Point #"
- Height = 252
- Left = 5400
- TabIndex = 2
- Top = 1200
- Width = 852
- End
- Begin Menu Exit
- Caption = "&Exit"
- End
- Sub Command1_Click ()
- Exit_click
- End Sub
- Sub Exit_click ()
- Form4.Hide
- Form1.Show
- Form2.Show
- End Sub
- Sub Graph1_HotHit (HitSet As Integer, HitPoint As Integer)
- Label3.Caption = Str(HitPoint)
- Label4.Caption = Str(HitSet)
- End Sub
-