?? form1.frm
字號:
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00E0E0E0&
Caption = "線寬與線型"
ClientHeight = 3795
ClientLeft = 60
ClientTop = 345
ClientWidth = 5205
FillColor = &H00FF0000&
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Icon = "Form1.frx":0000
LinkTopic = "Form1"
ScaleHeight = 3795
ScaleWidth = 5205
StartUpPosition = 2 '屏幕中心
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'CODE Manger By BcodeXRose
'##################################################################
'## 過程名稱:Form_Click
'## 參數: 無
'##################################################################
Private Sub Form_Click()
Dim j As Integer
CurrentX = 0
CurrentY = ScaleHeight / 2
DrawWidth = 1
For j = 0 To 6
DrawStyle = j
Line -Step(ScaleWidth / 15, 0)
Next j
For j = 1 To 6
DrawWidth = j * 3
Line -Step(ScaleWidth / 15, 0)
Next j
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -