VB编写进度条.doc

  1. 1、本文档共12页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
PAGE 1/ NUMPAGES 12VB编写进度条已经发展很久了,也有很多好方法。VB自带的进度条很难看,一般不用,要用的话,代码如下:Private Sub Command1_Click() Dim counter As Integer Dim workarea(25000) As String ProgressBar1.Min = LBound(workarea) ProgressBar1.Max = UBound(workarea) ProgressBar1.Visible = True ProgressBar1.Value = ProgressBar1.Min For counter = LBound(workarea) To UBound(workarea) workarea(counter) = initial value counter ProgressBar1.Value = counter Next counter End Sub各位看官,直接看下面:Text实现进度条:   Option Explicit Dim i As IntegerPrivate Sub Form_Load() Timer1.Enabled = True ? Text2.Width = (Form1.Width / 100) End SubPrivate Sub Timer1_Timer() 进度条设置 Text2.Width = Text2.Width + (Form1.Width / 100) If (Text2.Width / Form1.Width) 1 Then ? Form2.Show 载入主画面 ? Unload Me End If End Sub Image进度条:Option Explicit Dim i As IntegerPrivate Sub Form_Load() ?? ? JDT.Top = Lab.Top ? JDT.Width = (Lab.Width / 100)End SubPrivate Sub Timer1_Timer() 进度条设置 JDT.Width = JDT.Width + (Lab.Width / 100) If (JDT.Width / Lab.Width) 1 Then ? Form1.Show 载入主画面 ? Unload Me End IfEnd Sub?那么更换N个image就会有N个进度条演示,下面示图,大家自己试试。有看官马上问:那怎么显示百分比呢这个不难,百分比代码:加一个timer和一个labelFrom:Author:MinghackerDim b As Boolean Dim i As Integer Private Sub Timer1_Timer() If b Then i = i + 1 If Not b Then i = i - 1 If i 100 Then i = 100: b = False If i 0 Then i = 0: b = True Label1.Caption = CStr(i) + % End Sub Private Sub Form_Load() b = True i = 0 End Sub这样两个配合,进度条加进度百分比,看客们该是熟悉了吧?具体时间和进度协调要看你的计算了。Picture进度条:例子需以下控件: Command1、Command2、Picture1:都采用默认属性设置 Dim ctEsc As Boolean Private Sub Form_Load() ????初始化控件 ?? Picture1.AutoRedraw = True ?? Command1.Caption = 滚动条例子: Command2.Caption = 取消 End Sub Private Sub Command1_Click() ?? Dim I As Long, S As Long ?? ?? ctEsc = False ?? S = 1000 ?? For I = 1 To S ??????Me.Cls: Me.Print 显示: I ??????JinDuTiao I / S, 0.0 显示进度条:进度,显示格式(即小数数位) ??????DoEvents ??????If ctEsc Then Me.Print 已取消: Exit Sub ?? Next ?? Me.Print 完毕 End Sub Private Sub Command2_Click() ?? ctEsc = True End Sub Private Sub JinDuTiao(Bi As

您可能关注的文档

文档评论(0)

js1180 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档