Jump to content

GUICtrlSetData confusion


Fubarable
 Share

Recommended Posts

Hello from a new user of AutoIt. Please help me straighten out a small bit of confusion about the correct parameters used for calling the GUICtrlSetData function. I am learning about combo controls and how to fill them with data using GUICtrlSetData, and I notice in the online documentation for GUICtrlSetData it states that the first parameter should be the control identifier of component that is receiving the items to be added, however in the example shown, and in many posts in this forum a parameter of -1 is often used. Why the discrepancy? Is there other documentation that I have missed?

Many thanks in advance!

Pete

Edited by Fubarable
Link to comment
Share on other sites

-1 means the last used control. It just makes the code a bit shorter.

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

-1 means the last used control. It just makes the code a bit shorter.

Aha! That makes loads of sense, and many thanks for helping me out and so quickly too!

Now if only there were a page here on how to code in AutoIt from a Java programmer's perspective...

Link to comment
Share on other sites

Experience has also taught me to only use -1 on controls that have not been declared as a variable, otherwise use the variable name instead.

This works fine.

GUICtrlCreateLabel()
GUICtrlSetColor(-1, 0x000000)

This works

$label = GUICtrlCreateLabel()
GUICtrlSetColor(-1, 0x000000)

This is better

$label = GUICtrlCreateLabel()
GUICtrlSetColor($label, 0x000000)

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

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...