📄 sendform.frm
字号:
VERSION 5.00
Object = "{1666F204-B71B-4E6D-AA21-DCE71B94F422}#7.0#0"; "SMARTXPBUTTON.OCX"
Begin VB.Form sendform
BorderStyle = 3 'Fixed Dialog
Caption = "发送消息"
ClientHeight = 3060
ClientLeft = 45
ClientTop = 330
ClientWidth = 4410
Icon = "sendform.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3060
ScaleWidth = 4410
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin SmartXpButton.SmartNetXpButton SmartNetXpButton1
Height = 615
Left = 120
TabIndex = 1
Top = 2280
Width = 2055
_ExtentX = 3625
_ExtentY = 1085
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 = "sendform.frx":08CA
ShowPictureFixSize= -1 'True
PictureFixWidth = 40
End
Begin VB.TextBox sendtxt
Height = 1815
Left = 120
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Top = 360
Width = 4095
End
Begin SmartXpButton.SmartNetXpButton SmartNetXpButton2
Height = 615
Left = 2160
TabIndex = 2
Top = 2280
Width = 2055
_ExtentX = 3625
_ExtentY = 1085
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 = "sendform.frx":11A4
ShowPictureFixSize= -1 'True
PictureFixWidth = 40
End
Begin VB.Label Label1
Caption = "输入消息:"
Height = 255
Left = 240
TabIndex = 3
Top = 120
Width = 1455
End
End
Attribute VB_Name = "sendform"
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 SmartNetXpButton1_Click()
mainform.scksever.SendData "SENDINF" & sendtxt.Text
End Sub
Private Sub SmartNetXpButton2_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -