访问Office应用程序状态栏中的进度栏

时间:2008-10-20 08:55:12

标签: excel vba ms-word progress-bar ms-office

我为Word和Excel构建VBA应用程序,有没有办法访问有时出现在Office状态栏中的进度条。

4 个答案:

答案 0 :(得分:4)

以下将模拟Excel状态栏中的进度条:

Public Sub UpdateStatusBar(percent As Double, Optional Message As String = "")

    Const maxBars As Long = 20
    Const before As String = "["
    Const after As String = "]"

    Dim bar As String
    Dim notBar As String
    Dim numBars As Long

    bar = Chr(31)
    notBar = Chr(151)
    numBars = percent * maxBars

    Application.StatusBar = _
    before & Application.Rept(bar, numBars) & Application.Rept(notBar, maxBars - numBars) & after & " " & _
         Message & " (" & PercentageToString(percent) & "%)"

    DoEvents

End Sub

答案 1 :(得分:3)

我还建议记录StatusBar的当前状态,然后在完成所有操作后将其恢复。

Dim OldStatus
With Application
    OldStatus = .DisplayStatusBar
    .DisplayStatusBar = True
    .StatusBar = "Doing my duty, please wait..."
End With
' Do what you do best here (you can refresh the .StatusBar message with updted, as needed)
With Application
    .StatusBar = False
    .DisplayStatusBar = OldStatus
End With

答案 2 :(得分:0)

我没有访问进度条,但我过去曾使用过这样的方法将任务状态文本放在状态栏中...

Sub StatusBarExample()
    Application.ScreenUpdating = False 
    ' turns off screen updating
    Application.DisplayStatusBar = True 
    ' makes sure that the statusbar is visible
    Application.StatusBar = "Please wait while performing task 1..."
    ' add some code for task 1 that replaces the next sentence
    Application.Wait Now + TimeValue("00:00:02")
    Application.StatusBar = "Please wait while performing task 2..."
    ' add some code for task 2 that replaces the next sentence
    Application.Wait Now + TimeValue("00:00:02")
    Application.StatusBar = False 
    ' gives control of the statusbar back to the programme
End Sub

答案 3 :(得分:0)

AFAIK,无法再现Word&amp ;;使用的蓝线点。 Excel显示100%的进度,例如打开文件时。

我记得曾经看过一些代码在状态栏中复制它,但它很复杂,我不推荐它,当使用Application在状态栏中说“X%complete”已经足够了.StatusBar。