Jump to content

koda help


corey822
 Share

Recommended Posts

hey

i recently dld'd koda love the idea but a few questions

how do i add stuff to the combo box and list box?

is there any really good guides on any sites to help with koda?

and what exactly does context menu in the oi (object inspector) do?

and how to add writing to tabbed pages?

cheers C.W

Edited by corey822

C.Wnew rules:1.dont use plz in a post or title use please instead2.always use help file as it is now muchly over rated3. dont think where not watching u4.please wait 24 hours after last post ot bump XD i use to make that mistake

Link to comment
Share on other sites

how do i add stuff to the combo box and list box?

GUICtrlSetData()

is there any really good guides on any sites to help with koda?

Not sure, if you have any question feel free to ask

and how to add writing to tabbed pages?

For tabbed pages, you'll see how it looks like when you run in SciTe, then you create control within the tab. Edited by Generator
Link to comment
Share on other sites

do you have any things as an example for use with the guictrlsetdata item

please explain and sooner or later mayb i will end up creating a site as i have spare websapce and nothing to do so i can create a site for it

cheers C.W

C.Wnew rules:1.dont use plz in a post or title use please instead2.always use help file as it is now muchly over rated3. dont think where not watching u4.please wait 24 hours after last post ot bump XD i use to make that mistake

Link to comment
Share on other sites

#include <GUIConstants.au3>

GUICreate("My GUI combo") ; will create a dialog box that when displayed is centered

GUICtrlCreateCombo ("item1", 10,10); create first item
GUICtrlSetData(-1,"item2|item3","item3"); add other item snd set a new default

GUISetState ()

; Run the GUI until the dialog is closed
While 1
    $msg = GUIGetMsg()
    
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
Link to comment
Share on other sites

how do i add text to tabed pages?

link menus in the menu bar up top to a different page ?

is the guisetdata the same for the listbox?

and wat control id is best used?

cheers C.W

C.Wnew rules:1.dont use plz in a post or title use please instead2.always use help file as it is now muchly over rated3. dont think where not watching u4.please wait 24 hours after last post ot bump XD i use to make that mistake

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