📄 frmoutputtable.frm
字号:
VERSION 5.00
Begin VB.Form FrmOutputTable
Caption = "outputTable"
ClientHeight = 1440
ClientLeft = 60
ClientTop = 360
ClientWidth = 4680
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1440
ScaleWidth = 4680
StartUpPosition = 1 'CenterOwner
Begin VB.CommandButton CmdOK
Caption = "OK"
Height = 375
Left = 1920
TabIndex = 2
Top = 840
Width = 1215
End
Begin VB.CommandButton CmdCancel
Caption = "Cancel"
Height = 375
Left = 3240
TabIndex = 1
Top = 840
Width = 1215
End
Begin VB.TextBox txtTableName
Height = 375
Left = 1920
TabIndex = 0
Top = 240
Width = 2535
End
Begin VB.Label Label1
Caption = "outputTable Name:"
Height = 375
Left = 120
TabIndex = 3
Top = 240
Width = 1455
End
End
Attribute VB_Name = "FrmOutputTable"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdCancel_Click()
Unload Me
End Sub
Private Sub CmdOk_Click()
OutputTable gobjConnection, FrmMain.RecordsetOutputTable, txtTableName.Text
Set FrmMain.RecordsetOutputTable = Nothing
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -