I am debugging a VB6 executable. The executable loads dlls and files from it's current directory, when running. When run in debugger, the current directory seems to be VB6's dir.
How do I set working directory for VB6?
|
I am debugging a VB6 executable. The executable loads dlls and files from it's current directory, when running. When run in debugger, the current directory seems to be VB6's dir. How do I set working directory for VB6? |
|||
|
|
|
It doesn't seems to be a "out of the box" solution for this thing. Taken from The Old Joel On Software Forums
|
|||
|
|
|
"The current directory seems to be VB6's dir" only when you open a project using File-Open. Open it by double clicking the .vbp file while having the IDE closed. |
|||
|
|
|
Solution that I have found works best uses a Sub Main, and checks if running in the IDE. Dim gISIDE as Boolean
|
|||
|
|
|
|||||
|
|
Current directory for any program - including vb6 - can be changed in the properties of the shortcut. I've changed it to the root of my source tree, it makes using File-Open quicker. |
|||
|
|