Jump to content

Problem with a GUI function


Kard0
 Share

Recommended Posts

I'm trying to make a box that displays all the characters you have made. The names can be changed so I'm trying to use variables but Autoit just doesn't want to work with me in that way.

Here is the combo window.

$Account = GUICtrlCreateCombo("Default", 88, 16, 113, 25)
GuiCtrlSetData(-1, $kasutaja | $kasutaja2)

Error that it creates

C:\Users\Kardo\Documents\Gemcounter.au3 (137) : ==> Unable to parse line.: 
GuiCtrlSetData(-1, $kasutaja | $kasutaja2) 
GuiCtrlSetData(-1, $kasutaja ^ ERROR
>Exit code: 1    Time: 0.208

Tutorial I followed to get this far.

#include <GUIConstantsEx.au3>

Opt('MustDeclareVars', 1)

Example()

Func Example()
    Local $msg
    
    GUICreate("My GUI")  ; will create a dialog box that when displayed is centered

    GUICtrlCreateCombo("", 10, 10)

    GUICtrlSetData(-1, "item1|item2|item3", "item3")

    GUISetState()       ; will display an empty dialog box with a combo control with focus on

    ; Run the GUI until the dialog is closed
    While 1
        $msg = GUIGetMsg()
        
        If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
EndFunc   ;==>Example

I'm trying to make a small system where you can press "Create" to make another character and add the character name into the combo box list. I didn't manage to get so far since I ran into this mess. No clue how to bypass it for now.

Would be grateful for any tips how to finish it.

Kardo

Link to comment
Share on other sites

If you look at the original code:

GUICtrlSetData(-1, "item1|item2|item3", "item3")

notice how item1|item2|item3 is in quotes. This is known as a string. What you have however, are strings stored in variables separated by the | character.

Try instead something like $varA & "|" & $varB & "|" & $varC.

This will force all your variables to be separated by the | character INSIDE the string. (Think of the & character as something that joins several strings, called concatenation.)

Link to comment
Share on other sites

I'm trying to make a box that displays all the characters you have made. The names can be changed so I'm trying to use variables but Autoit just doesn't want to work with me in that way.

Change this line
GuiCtrlSetData(-1, $kasutaja | $kasutaja2)

to this

GuiCtrlSetData(-1, $kasutaja & "|" & $kasutaja2)

You're trying to merge 2 variables and a character together without telling the script to merge them, that's what the "&" does.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

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