Jump to content

multiple GUIs, general philosophy of GUIs


Recommended Posts

Hello everybody,

I'm almost a beginner to autoIT but I'm already familiar with the concepts of GUIs with some APIs in other languages.

I encounter 2 issues :

1/ when creating to GUIs, all the controls go onto the same GUI

- I call GUICreate,

- create a few controls

- hide that form,

- call GUICreate again

- create a few controls

- start the infinite loop used to pump the messages

=> All the controls are displayed on the same window! I'm very confused. Should I explicitly tell autoit onto what GUI it should create the controls?

2/ what's the mechanism used to have 2+ forms running at the same time?

- autoit needs to "messages" infinite loop to work

- there can be only one loop running at a time

- so if you have 2 forms, do you need to process the messages of both forms in the same loop?

A code snippet would be welcome

Thanks for the clarification.

Link to comment
Share on other sites

Ad 1) Use GUISwitch to place your controls on the second GUI.

"Many of the GUI specific functions work on the "current" window - this is usually the last window created with GUICreate. This function allows you to make another window "current".

Ad 2) I haven't done it myself but I think it depends wether you use GUIGetMsg or GUIOnEventMode. If you search the forum for "+multiple +gui" you'll find a lot of posts.

Edited by water

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Ad 1) Use GUISwitch to place your controls on the second GUI.

Thanks!

Ad 2) If you search the forum for "+multiple +gui" you'll find a lot of posts.

Damn. I've been searching a lot with such keywords as "several gui", "several windows", etc. with little success. The examples found with your keywords look perfect. Especially this one : http://www.autoitscript.com/forum/index.php?showtopic=67148&st=0&p=497665&hl=%20multiple%20%20gui&fromsearch=1&#entry497665

Thanks again.

=> SOLVED

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...