jftuga Posted April 7, 2006 Posted April 7, 2006 Is there any way to turn on the title bar to a foriegn executable program? Our biometrics password authentication system looks at the title bar, but the application that we want to use it with does not show the title bar. I tried using WinSetTitle(), which worked by resetting the title to something other than the empty string, but this is still insufficent. Thanks, -John Admin_Popup, show computer info or launch shellRemote Manager, facilitates connecting to RDP / VNCProc_Watch, reprioritize cpu intensive processesUDF: _ini_to_dict, transforms ini file entries into variablesUDF: monitor_resolutions, returns resolutions of multiple monitorsReport Computer Problem, for your IT help deskProfile Fixer, fixes a 'missing' AD user profile
PsaltyDS Posted April 7, 2006 Posted April 7, 2006 Is there any way to turn on the title bar to a foriegn executable program? Our biometrics password authentication system looks at the title bar, but the application that we want to use it with does not show the title bar. I tried using WinSetTitle(), which worked by resetting the title to something other than the empty string, but this is still insufficent. Thanks, -John I'm not sure you can add a title bar to a window that already exists... but I couldn't figure out a style for GuiCreate() that didn't create at least an empty title bar anyway, just to try it out! This was my test script: ; Window with no title #include <GuiConstants.au3> GUICreate("", 300, 100, 50, 50, $DS_MODALFRAME) GUISetState() MsgBox(64, "Testing", "Click OK to add title.") WinSetTitle("", "", "Ta Da!") MsgBox(64, "Testing", "Click OK to exit.") I try various styles and extended styles, but I always get at least an empty title bar. If we can figure out to make a GUI with no title bar, then maybe we can figure out how to add one later. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
jftuga Posted April 8, 2006 Author Posted April 8, 2006 (edited) Larry, I will get back to you on Monday, when I have the fingerprint reader in front of me, so I can tell you what exactly is going on step-by-step. I am using the AutoIt Window Info program to glean information from the application. We are using Digital Persona simply because that is what our EHR vendor told us they support. I don't think they support any other biometric systems. We have not purchased the Digital Persona system yet as we are still in the evaluation phase. One thing that I don't like about them is that their system extends the AD schema, but maybe all biometric systems have to do this. -John Edited April 8, 2006 by jftuga Admin_Popup, show computer info or launch shellRemote Manager, facilitates connecting to RDP / VNCProc_Watch, reprioritize cpu intensive processesUDF: _ini_to_dict, transforms ini file entries into variablesUDF: monitor_resolutions, returns resolutions of multiple monitorsReport Computer Problem, for your IT help deskProfile Fixer, fixes a 'missing' AD user profile
jftuga Posted April 8, 2006 Author Posted April 8, 2006 PsaltyDS, I wonder if you can use something like ResHacker to add one or maybe some other 3rd party program like it. -John Admin_Popup, show computer info or launch shellRemote Manager, facilitates connecting to RDP / VNCProc_Watch, reprioritize cpu intensive processesUDF: _ini_to_dict, transforms ini file entries into variablesUDF: monitor_resolutions, returns resolutions of multiple monitorsReport Computer Problem, for your IT help deskProfile Fixer, fixes a 'missing' AD user profile
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now