cancel
Showing results for 
Search instead for 
Did you mean: 

Progess Bar in SAP

0 Kudos

Hi Experts,

I need to fix a progress bar in my screen through SDK code, is it possible , if so...guide me with that............

Regards

Pradeep

Accepted Solutions (0)

Answers (2)

Answers (2)

0 Kudos

Hi friend,

Thanks a lot...

Regards

Pradeep

Former Member
0 Kudos

Taken from the SDK help file:

'// Start the progress bar
Dim m_oProgBar As SAPbouiCOM.ProgressBar
Set m_oProgBar = m_App.StatusBar.CreateProgressBar("My Progress Bar", 10, True)
m_oProgBar.Value = 0

'// Forward\Backward commands
Dim iPos As Integer
iPos = m_oProgBar.Value
m_oProgBar.Value = iPos u2013 1 / +1

'// Stop the progress bar
m_oProgBar.Stop
Set m_oProgBar = Nothing