📄 xxform.frm
字号:
VERSION 5.00
Object = "{1666F204-B71B-4E6D-AA21-DCE71B94F422}#7.0#0"; "SMARTXPBUTTON.OCX"
Begin VB.Form xxform
BorderStyle = 3 'Fixed Dialog
Caption = "消息"
ClientHeight = 5055
ClientLeft = 45
ClientTop = 330
ClientWidth = 3480
Icon = "xxform.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5055
ScaleWidth = 3480
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 100
Left = 1200
Top = 3960
End
Begin VB.TextBox Text1
Height = 3375
Left = 120
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 2
Text = "xxform.frx":08CA
Top = 720
Width = 3375
End
Begin SmartXpButton.SmartNetXpButton SmartNetXpButton1
Height = 495
Left = 0
TabIndex = 0
Top = 4560
Width = 3495
_ExtentX = 6165
_ExtentY = 873
CaptionAreaLayout= 1
Caption = "确定"
ShowCaption = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Picture = "xxform.frx":08D0
ShowPictureFixSize= -1 'True
PictureFixWidth = 40
End
Begin VB.Label Label2
Caption = "客户机的信息:"
BeginProperty Font
Name = "华文行楷"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 120
TabIndex = 1
Top = 120
Width = 2295
End
End
Attribute VB_Name = "xxform"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Left = Screen.Width - 2 * Me.Width
Me.Top = (Screen.Height - Me.Height) \ 2
End Sub
Private Sub Form_Unload(Cancel As Integer)
'mainform.xpbutton(3).Enabled = True
End Sub
Private Sub SmartNetXpButton1_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
If Text1.Text <> "" Or Text1.Text <> "稍等" Then
Text1.Text = xtxx
Timer1.Enabled = False
Else
Text1.Text = "稍等"
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -