Dec 18, 2002 #1 Diogo Technical User Mar 22, 2001 143 PT Hi. Is there any way, that i could know the title of the windows that are opened. ex. "Visual Basic(Microsoft):Version 5 & 6 Forum - Tek-Tips Thanks any way. Diogo Reis
Hi. Is there any way, that i could know the title of the windows that are opened. ex. "Visual Basic(Microsoft):Version 5 & 6 Forum - Tek-Tips Thanks any way. Diogo Reis
Dec 18, 2002 #2 pmrankine Programmer Jul 18, 2001 71 GB Diogo, this may point you in the right direction: Dim frmTempForm As Form For Each frmTempForm In Forms MsgBox frmTempForm.Caption Next pmrankine Upvote 0 Downvote
Diogo, this may point you in the right direction: Dim frmTempForm As Form For Each frmTempForm In Forms MsgBox frmTempForm.Caption Next pmrankine
Dec 18, 2002 Thread starter #3 Diogo Technical User Mar 22, 2001 143 PT That gives me the name of the report open of your project. But what i want is the title of the word, internet explorer, the other applications of windows. Thanks any way. Diogo Reis Upvote 0 Downvote
That gives me the name of the report open of your project. But what i want is the title of the word, internet explorer, the other applications of windows. Thanks any way. Diogo Reis
Dec 18, 2002 #4 TheVampire Programmer May 1, 2002 828 US Then you will want to look at the API functions: EnumWindows EnumChildWindows Robert Upvote 0 Downvote
Dec 18, 2002 #5 kmcclung Programmer Nov 20, 2001 120 US Check out the solution I used under the thread "# of Instances of an Application Opened" thread222-430467 I use it to make sure a workstation cannot open more than 4 instances of an application, but in it I am checking the title of all open windows. Hope this helps! Upvote 0 Downvote
Check out the solution I used under the thread "# of Instances of an Application Opened" thread222-430467 I use it to make sure a workstation cannot open more than 4 instances of an application, but in it I am checking the title of all open windows. Hope this helps!