07-30-2006 10:35 AM
07-31-2006 02:32 PM
08-01-2006 01:55 AM
Thank you for replay.
I am talking about very simple CVI code like
void __declspec(dllexport) simpleFunction()
{
printf("hello world\n");
/* some operations here
you could run delay(2); instead
*/
printf("hello world\n");
}
so, each printf function maximize and active the output window (screenshot attached). I run long tests and want to do something else when my test is running but it's impossible becase of output window popups.
Could you help me?
Thanks
08-01-2006 08:44 AM
08-02-2006 08:59 AM
Try looking at some of these methods:
SetStdioWindowOptions()
SetStdioWindowPosition()
SetStdioWindowSize()
SetStdioWindowVisibility()
You can read about them in the CVI Help. Even though you see the TestStand symbol on that I/O window it is really CVI that is generating it when you do a printf. TestStand just owns it. You can set different options for the window using these functions.
Hope this helps,
08-02-2006 09:10 AM
Hi,
Using SetStdioWindowVisibility (0) will hide the window.
Using SetStdioWindowOptions(100 , 0, 0) would show 100 lines but would not bring the window to the front when text was sent to the standard I/O.
Hope this helps
Regards
Ray Farmer