首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 办公应用 > OFFICE教程 >

openoffice -将文本写下到状态栏的宏

2013-02-03 
openoffice --将文本写入到状态栏的宏Sub MainStatusText(hello world)End SubFunction ProgressBarProg

openoffice --将文本写入到状态栏的宏
Sub Main
    StatusText("hello world")
End Sub

Function ProgressBar
    ProgressBar = ThisComponent.CurrentController.StatusIndicator
End Function

REM display text in status bar
    Sub StatusText(sInformation as String)
    Dim iLen As Integer
    Dim iRest as Integer
    iLen = Len(sInformation)
    iRest = 270-iLen
    ProgressBar.start(sInformation+SPACE(iRest),0)
End Sub

热点排行