www.pudn.com > Winmine.rar > Form6.frm


VERSION 5.00 
Begin VB.Form Form6  
   Caption         =   "Form6" 
   ClientHeight    =   5880 
   ClientLeft      =   60 
   ClientTop       =   420 
   ClientWidth     =   9585 
   LinkTopic       =   "Form6" 
   ScaleHeight     =   5880 
   ScaleWidth      =   9585 
   StartUpPosition =   3  'Windows Default 
   Begin VB.Timer Timer1  
      Interval        =   100 
      Left            =   6600 
      Top             =   1200 
   End 
   Begin VB.TextBox Text1  
      Height          =   4215 
      Left            =   0 
      MultiLine       =   -1  'True 
      ScrollBars      =   2  'Vertical 
      TabIndex        =   0 
      Text            =   "Form6.frx":0000 
      Top             =   0 
      Width           =   5295 
   End 
End 
Attribute VB_Name = "Form6" 
Attribute VB_GlobalNameSpace = False 
Attribute VB_Creatable = False 
Attribute VB_PredeclaredId = True 
Attribute VB_Exposed = False 
Dim t_jl_x, t_jl_y, t_jl_n 
 
Private Sub Form_Resize() 
Text1.Move 0, 0, Me.Width, Me.Height 
End Sub 
 
Private Sub Timer1_Timer() 
If t_jl_x <> JL_x Or t_jl_y <> JL_y Or t_jl_n <> JL_n Then 
    Text1.Text = Text1.Text & JL_x & ";" & JL_y & ";" & JL_n & vbCrLf 
    t_jl_x = JL_x 
    t_jl_y = JL_y 
    t_jl_n = JL_n 
End If 
End Sub