Jump to content

create listviewitem in another gui


Recommended Posts

i want to create a listviewitem in another gui than the gui, which is active and in which the code is... i use a code like this

GUICreate(...)
global $listview = GUICtrlCreateListview(...)
...

GUICreate(...)
...
GUICreateListViewItem("bla|bla", $listview)
...

but it still not works...

Edited by Lord_Doominik
Link to comment
Share on other sites

$firstgui = GUICreate(...)

$listview = GUICtrlCreateListview(...)

$secondgui = GUICreate(...)

GuiSwitch($firstgui)

GUICreateListViewItem("bla|bla", $listview)

Edited by quaizywabbit
[u]Do more with pre-existing apps![/u]ANYGUIv2.8
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...