📄 dlgwriteitem.frm
字号:
VERSION 5.00
Begin VB.Form dlgWriteItem
BorderStyle = 3 'Fixed Dialog
Caption = "写OPC标签"
ClientHeight = 1200
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 3975
Icon = "dlgWriteItem.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1200
ScaleWidth = 3975
ShowInTaskbar = 0 'False
Begin VB.TextBox txtValue
Height = 375
Left = 240
TabIndex = 2
Top = 120
Width = 2055
End
Begin VB.CommandButton CancelButton
Caption = "取消"
Height = 375
Left = 2520
TabIndex = 1
Top = 600
Width = 1215
End
Begin VB.CommandButton OKButton
Caption = "确定"
Default = -1 'True
Height = 375
Left = 2520
TabIndex = 0
Top = 120
Width = 1215
End
End
Attribute VB_Name = "dlgWriteItem"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public mbReturn As Boolean
Public msValue As String
Private Sub Form_Load()
mbReturn = False
End Sub
Private Sub CancelButton_Click()
Unload Me
End Sub
Private Sub OKButton_Click()
mbReturn = True
msValue = txtValue.Text
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -