Options

Dialog Box with progress bar

dakyndakyn Member Posts: 36
When I use a dialog box I would want to insert one progress bar. How I can make? This operation is possible?

Comments

  • Options
    ChristophChristoph Member Posts: 9
    creats an dialogbox like
    dialog.open(txt000);
    
    txt000 is a Text Constant with the value 'Progress..@'

    to update the progress bar use
    dialog.update(1, round((value/maxvalue)*10000,1));
    

    Hope it helps
    Christoph
  • Options
    dakyndakyn Member Posts: 36
    Tanhk you very much!
Sign In or Register to comment.