Form1.frm
上传用户:xiuanze55
上传日期:2017-08-03
资源大小:1080k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   945
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4335
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   945
  10.    ScaleWidth      =   4335
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton cmdBusy 
  13.       Caption         =   "While true: Wend"
  14.       Height          =   495
  15.       Left            =   480
  16.       TabIndex        =   0
  17.       Top             =   240
  18.       Width           =   3495
  19.    End
  20. End
  21. Attribute VB_Name = "Form1"
  22. Attribute VB_GlobalNameSpace = False
  23. Attribute VB_Creatable = False
  24. Attribute VB_PredeclaredId = True
  25. Attribute VB_Exposed = False
  26. Option Explicit
  27. Private Sub cmdBusy_Click()
  28.   cmdBusy.Enabled = False
  29.   While True: Wend
  30. End Sub