Announcement

Collapse
No announcement yet.

progress bar

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • progress bar

    I'm trying to add a progress bar showing the progress of installing a file, can anyone help me?

    This is the code to install the file:
    (The "EXE" is a converted batch file!)

    result = File.Run (SessionVar.Expand ("%AppFolder%\\Start.exe"), "", "", SW_SHOWNORMAL, false);

  • #2
    There is no progress during the execution of a program, you only get a exit code once the program is finished. The program itself needs to show a progress bar to show the real status. Otherwise, you can use a timer to move a progress bar, just as a manner to show some activity.

    Ulrich

    Comment


    • #3
      okay, that does not work!
      Is it possible to run a processbar until it is closed?

      Comment

      Working...
      X