ChrisCarroll
Programmer
- Oct 10, 2000
- 177
These are valid :
but this is not:
Anyone got a technique that allows me to Do form where the form is inside an exe?
for the curious, I'm led to want to do this by:
1) I've been using 2) I've done some stuff based on that for automatically testing UIs
3) It occurred to me that I could run my automated tests on the Exe, thereby guaranteeing that the shipped exe bahaved as expected outside my development environment
Code:
[I]* Works nicely[/I]
Do myProc in myApp.exe
[I]* So does this[/I]
Set procedure to myApp.exe
Do myProc
Code:
[I]* Doesn't work[/I]
Do Form myForm in myApp.exe
for the curious, I'm led to want to do this by:
1) I've been using 2) I've done some stuff based on that for automatically testing UIs
3) It occurred to me that I could run my automated tests on the Exe, thereby guaranteeing that the shipped exe bahaved as expected outside my development environment