www.pudn.com > AVPhone.zip > Form7.frm
VERSION 5.00
Begin VB.Form Form7
Caption = "Monitor"
ClientHeight = 2892
ClientLeft = 6888
ClientTop = 2556
ClientWidth = 4968
Icon = "Form7.frx":0000
LinkTopic = "Form7"
ScaleHeight = 2892
ScaleWidth = 4968
ShowInTaskbar = 0 'False
Begin VB.TextBox Text1
Height = 1485
Left = 270
Locked = -1 'True
MultiLine = -1 'True
TabIndex = 0
Top = 330
Width = 2505
End
End
Attribute VB_Name = "Form7"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'add text to list
Friend Sub PrintA(Text As String)
AddTextStreamToCtrl Text1, Text & vbCrLf
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
If UnloadMode = vbFormControlMenu Then
Cancel = True
On Error Resume Next
Hide
End If
End Sub
Private Sub Form_Resize()
On Error Resume Next
Text1.Move 0, 0, ScaleWidth, ScaleHeight
End Sub