?? pexam11_8.frm
字號:
VERSION 5.00
Begin VB.Form Form1
Caption = "單擊窗體繪制正弦曲線"
ClientHeight = 2070
ClientLeft = 60
ClientTop = 345
ClientWidth = 3690
LinkTopic = "Form1"
ScaleHeight = 2070
ScaleWidth = 3690
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Scale (0, 1)-(360, -1)
DrawWidth = 2
For x = 0 To 360
y = 0.9 * Sin(x * 3.1415926 / 180)
PSet (x, y), vbRed
Next x
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -