Hi richardander,

from line 26 in your post
Qt Code:
  1. myApp.exe!main(int argc=2, char * * argv=0x02aa6d68) Line 182 + 0x6 C++
To copy to clipboard, switch view to plain text mode 
I would guess that you are passing an argument to your programm. First of all I would try to not pass any arguments to the application and see what is happening.

argc => argument count
the number of arguments passed to the application from the command line. the first argument is always the executables name.

Then it would be helpfull if you could show us how you start your application, e.g.
Qt Code:
  1. myApp.exe firstArgument
To copy to clipboard, switch view to plain text mode 

Taurho