Lord_Doominik Posted June 3, 2005 Posted June 3, 2005 (edited) 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 June 3, 2005 by Lord_Doominik
quaizywabbit Posted June 3, 2005 Posted June 3, 2005 (edited) $firstgui = GUICreate(...) $listview = GUICtrlCreateListview(...) $secondgui = GUICreate(...) GuiSwitch($firstgui) GUICreateListViewItem("bla|bla", $listview) Edited June 3, 2005 by quaizywabbit [u]Do more with pre-existing apps![/u]ANYGUIv2.8
Lord_Doominik Posted June 3, 2005 Author Posted June 3, 2005 thx alot for your answer, it works great!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now