LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

in labwindows,my input is from a keyboard and standard I/O window pops up and blocks the UIR window. Is there any solution to minimize the size of standard I/O window?

LABWINDOWS:
since the input is from a keyboard,standard I/O window pops up and i think we can only minimize it and we cant avoid it from poping up.can u please suggest me methods to minimize the standard I/O window so that the User Interface window be clearly seen?
0 Kudos
Message 1 of 2
(2,862 Views)
You have some control over the stdio window with functions in the utility library:
SetStdioWindowOptions()
SetStdioWindowPosition()
SetStdioWindowSize()
SetStdioWindowVisibility()
It sounds like your user interface includes both the stdio window and the UIR user interface. Normally I use one or the other. I use the stdio window only for the simplest applications where I'm just looking for something temporary, quick and easy. I use the UIR (without the stdio window) for just about anything that I'll distribute. I would suggest not using the stdio window at all. You can use text boxes to get user input from the keyboard or to display messages to the user.
Message 2 of 2
(2,862 Views)