www.pudn.com > prit.rar > FrmTestCirclePro.frm
VERSION 5.00
Object = "{738F39CA-5524-11DA-BCFF-AF5533AF6218}#1.0#0"; "CIRCLEPRO.OCX"
Begin VB.Form Form1
BackColor = &H80000000&
Caption = "大师级审计,用“审计大师”软件"
ClientHeight = 2760
ClientLeft = 60
ClientTop = 345
ClientWidth = 7185
LinkTopic = "Form1"
LockControls = -1 'True
ScaleHeight = 2760
ScaleWidth = 7185
StartUpPosition = 3 '窗口缺省
Begin HuWeiPingCirclePro.CirclePro CirclePro2
Height = 1455
Left = 2355
Top = 345
Width = 1455
_ExtentX = 2566
_ExtentY = 2566
Color = 16711680
BackColor = 16761087
Value = 1
End
Begin HuWeiPingCirclePro.CirclePro CirclePro1
Height = 1560
Left = 255
Top = 360
Width = 1560
_ExtentX = 2752
_ExtentY = 2752
BackColor = -2147483633
Value = 1
End
Begin VB.CommandButton Command2
Caption = "Value"
Height = 480
Left = 2295
TabIndex = 1
Top = 1935
Width = 1650
End
Begin VB.CommandButton Command1
Caption = "IsMovie"
Height = 495
Left = 360
TabIndex = 0
Top = 1905
Width = 1470
End
Begin VB.Label Label1
Caption = $"FrmTestCirclePro.frx":0000
Height = 2535
Left = 4515
TabIndex = 2
Top = 105
Width = 2505
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 Command1_Click()
If Command1.Caption = "IsMovie" Then
Command1.Caption = "NoMovie"
CirclePro1.IsMovie = True
Else
Command1.Caption = "IsMovie"
CirclePro1.IsMovie = False
End If
End Sub
Private Sub Command2_Click()
If CirclePro2.Value = 100 Then CirclePro2.Value = 0
CirclePro2.Value = CirclePro2.Value + 10
End Sub