?? 代碼生成窗口.frm
字號:
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Begin VB.Form 代碼生成窗口
Caption = "代碼生成窗口"
ClientHeight = 7305
ClientLeft = 60
ClientTop = 450
ClientWidth = 8295
Icon = "代碼生成窗口.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form1"
ScaleHeight = 7305
ScaleWidth = 8295
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton 保存文件
Caption = "保存文件"
Height = 735
Left = 6840
Picture = "代碼生成窗口.frx":0442
Style = 1 'Graphical
TabIndex = 3
Top = 5040
Width = 1215
End
Begin MSComDlg.CommonDialog CommonDialog1
Left = 7200
Top = 960
_ExtentX = 847
_ExtentY = 847
_Version = 393216
DefaultExt = "c"
Filter = "*.c"
End
Begin VB.Frame Frame1
Caption = "Frame1"
Height = 6855
Left = 120
TabIndex = 1
Top = 240
Width = 6495
Begin VB.TextBox 代碼顯示框
Height = 6255
Left = 240
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 2
Top = 360
Width = 6015
End
End
Begin VB.CommandButton 確定
Caption = " 確定"
Height = 735
Left = 6840
Picture = "代碼生成窗口.frx":0884
Style = 1 'Graphical
TabIndex = 0
Top = 6240
Width = 1215
End
End
Attribute VB_Name = "代碼生成窗口"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub 保存文件_Click()
On Error GoTo err
CommonDialog1.InitDir = CommonDialog1.InitDir
CommonDialog1.ShowSave
Open CommonDialog1.FileName For Append As #1
Print #1, 代碼顯示框.Text
Close #1
err:
End Sub
Private Sub 確定_Click()
代碼生成窗口.Hide
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -