Form1.frm
上传用户:hyb6888
上传日期:2016-01-24
资源大小:5186k
文件大小:1k
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 5835
- ClientLeft = 60
- ClientTop = 390
- ClientWidth = 8700
- LinkTopic = "Form1"
- ScaleHeight = 5835
- ScaleWidth = 8700
- StartUpPosition = 3 '窗口缺省
- Begin VB.PictureBox Picture1
- Height = 5535
- Left = 360
- Picture = "Form1.frx":0000
- ScaleHeight = 5475
- ScaleWidth = 7875
- TabIndex = 0
- Top = 1560
- Width = 7935
- End
- 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()
- OpenDlg Me.hwnd, "*.*", 1
- End Sub
- Private Sub Form_Load()
- For x = 0 To 1000
- Me.PSet (x, 100), RGB(255, 0, 0)
- Next
-
- End Sub
- Private Sub Picture1_Click()
- myColor = RGB(255, 0, 0)
- For y = 0 To 6000
- Picture1.PSet (y + 1, y), myColor
- Next
- End Sub