form1.frm
来自「vb电子书籍」· FRM 代码 · 共 45 行
FRM
45 行
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_Paint
'## 参数: 无
'##################################################################
Private Sub Form_Paint()
Cls
Form1.Scale (-200, 250)-(300, -150)
Line (-200, 0)-(300, 0)
Line (0, 250)-(0, -150)
CurrentX = 0: CurrentY = 0: Print 0
CurrentX = 280: CurrentY = 20: Print "x"
CurrentX = 10: CurrentY = 240: Print "y"
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?