Form1.frm
资源名称:00011511.rar [点击查看]
上传用户:xiuanze55
上传日期:2017-08-03
资源大小:1080k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
Delphi
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 945
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4335
- LinkTopic = "Form1"
- ScaleHeight = 945
- ScaleWidth = 4335
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton cmdBusy
- Caption = "While true: Wend"
- Height = 495
- Left = 480
- TabIndex = 0
- Top = 240
- Width = 3495
- End
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdBusy_Click()
- cmdBusy.Enabled = False
- While True: Wend
- End Sub