I typically do my scripting in VB.Net using Meditech DLLs. I have a problem where if the Meditech window is minimized the script hangs until the Meditech workstation is maximized. Below is the code that I use to start the workstation and I have tried multiple things for the second argument and nothing I have tried starts the workstation maximized. I believe the PromptBoolean2 function is the routine that hangs when the workstation is minimized…
Any thoughts or suggestions for either how to get the workstation to start maximized, or other workaround for hanging if the workstation is minimized?
result = MRWStartup("C:\Program Files\Meditech\Workstation3.x\T.exe", "")
Thanks!
Tim Brady
Director of Information Systems
Mt. Washington Pediatric Hospital
1708 W. Rogers Ave.
Baltimore, MD 21209
410-578-2676 (office)
The information in this email is confidential and may be legally privileged. It is intended solely for the addressee or a person authorized to deliver it to the named addressee. Access to this email by anyone else is unauthorized. If the reader of this message
is not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please delete the message and notify the sender so that we
may correct our records.
Mt. Washington Pediatric Hospital, 1708 West Rogers Avenue, Baltimore, Maryland, 21209-4596.
Charles J. Still, MBA, CPPS, CPHQI'll look and see if I have a copy of my monitoring script I created for Magic. I used it for autologin and maximizing the ER tracker board and other functions.Free toolHello Tim;You can create a simple Autoit script to open and maximize the screen. You can further set it to monitor the window and re-maximize it if someone minimizes the screen.
https://www.autoitscript.com/site/autoit/
===###===###===###===###===###===###===
To unsubscribe from the meditech-l, follow the instructions at the URL http://mtusers.com/mailman/options/meditech-l_mtusers.com/
Please do NOT send messages that ask "Please post to the list" or "I'd like to see your answers" or "Send that info to me, too" These are useless messages that just waste the email server's resources. Instead, email the original requester and ask that they send you or post the results of their question.
Go to http://MTUsers.net for other information on the list, as well as:
1) reading meditech-l messages online
2) job opportunities
3) vendor products and service
Do NOT send email to meditech...@MTUsers.com. This is a system email box that is NOT monitored by a human. If you need help or advice on how to use the meditech-l, email ju...@MTUsers.net. Julia helps manage the meditech-l, so she is your best resource.
===***===***===***===***===***===***===
--
===###===###===###===###===###===###===
To unsubscribe from the meditech-l, follow the instructions at the URL http://mtusers.com/mailman/options/meditech-l_mtusers.com/
Please do NOT send messages that ask "Please post to the list" or "I'd like to see your answers" or "Send that info to me, too" These are useless messages that just waste the email server's resources. Instead, email the original requester and ask that they send you or post the results of their question.
Go to http://MTUsers.net for other information on the list, as well as:
1) reading meditech-l messages online
2) job opportunities
3) vendor products and service
Do NOT send email to meditech...@MTUsers.com. This is a system email box that is NOT monitored by a human. If you need help or advice on how to use the meditech-l, email ju...@MTUsers.net. Julia helps manage the meditech-l, so she is your best resource.
===***===***===***===***===***===***===
Thanks! For the second argument, I replaced the double quotes with the keyword Nothing and that did the trick. I will checkout that tool though.