Hi,
I'm currently developing OperatorInterface using MSVC++6.0 for TestStand on top of "SimpleMFCOperatorInterface" from examples.
We have need to provide also automatical test-execution (To run in the middle of the night for example).
Something like:
"operatorInterface.exe -s Sequence [-e EntryPoint -u OperUsername -p Passwd]"
The question is - how automaticly log in "OperUsername", possibly with password checking.
I've read article "How To Avoid Displaying a Login Dialog Box ..." and its clear that we can set AutoLoginName variable in SequenceEditor. But we need somehow to PASS this name from Operator Innterface to LoginLogout callback.
Also it is possible to place "OperUsername" in .txt file an
d read it via PropertyLoad, but it doesn't seems to be the best solution.
Some source code would be great!