3

Documentation for RunWait() lacks description of returned error codes.

What do the different error code values mean?

user4157124
  • 2,809
  • 13
  • 27
  • 42
Alexander Bird
  • 38,679
  • 42
  • 124
  • 159

1 Answers1

3

It is because these codes appear as a result of the programs you run with RunWait, not to this AutoIT function.

Generic success code is zero, and any non-zero value could mean absolutely anything, and the only way to know what happened is to study this exact app or console command output.

Kirill Leontev
  • 10,641
  • 7
  • 43
  • 49
  • 1
    If its your own app the return code is one you would specify. See the Exit() command's argument. – Copas Aug 27 '10 at 22:55