📄 frmreport.frm
字号:
VERSION 5.00
Begin VB.Form frmReport
BorderStyle = 1 'Fixed Single
Caption = "报告"
ClientHeight = 1230
ClientLeft = 45
ClientTop = 330
ClientWidth = 4590
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1230
ScaleWidth = 4590
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command3
Caption = "内容"
Height = 375
Left = 3120
TabIndex = 3
Top = 600
Width = 1215
End
Begin VB.CommandButton Command2
Caption = "错误"
Height = 375
Left = 1680
TabIndex = 2
Top = 600
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "建议"
Height = 375
Left = 240
TabIndex = 1
Top = 600
Width = 1215
End
Begin VB.TextBox Text1
Height = 285
Left = 240
MaxLength = 500
TabIndex = 0
Top = 240
Width = 4095
End
End
Attribute VB_Name = "frmReport"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'==================
'发送报告窗体
'完成错误,建议信息的发送,向服务器反馈信息
'===================
Private Sub Command1_Click()
'发送建议
MyIM.Winsock1.SendData ".Report Complaint " & Text1.Text
Text1.Text = ""
Me.Hide
End Sub
Private Sub Command2_Click()
'发送错误报告
MyIM.Winsock1.SendData ".Report Bug " & Text1.Text
Text1.Text = ""
Me.Hide
End Sub
Private Sub Command3_Click()
'发送内容
MyIM.Winsock1.SendData ".Report Comment " & Text1.Text
Text1.Text = ""
Me.Hide
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -