Hi!
i've created a GUI in a file gui.au3
$dashboard = GUICreate("DASHBOARD", 1920, 1000, 0, 0)
i included in the script : #include<module.au3>
in the module.au3 script, i want to complete the GUI building :
-------------
func _MODULES_CreateGUI($dashboard)
GUICtrlSetState ( $hide_objects_, $GUI_SHOW )
$list = GUICtrlCreateListView("col1|col2|col3", 260, 52, 300, 400)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 100)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 1, 100)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 2, 70)
GUICtrlSetOnEvent(-1, "list_Click") ;double click instead
GUISetState(@SW_SHOW)
EndFunc
------------
i'm calling _MODULES_CreateGUI(argument???) in gui.au3
to complete GUI building
but it draws nothing, maybe because the GUI is not activated yet in the module.au3 script
how to activate it to complete the building??