Icarus
Joined: 24 Nov 2005 Posts: 440
|
Posted: Wed May 21, 2008 2:41 pm Post subject: |
|
|
No need to redraw, just set your target GUI as the default gui with Gui 2:Default (replace 2 with your GUI number)
See this example:
| Code: | #SingleInstance Force
Gui Add, ListView,,Hello|World
LV_Add( 0, "GUI 1", "is in the house" )
Gui Show,y200,GUI 1
Gui 2:Default
Gui Add, ListView,,Hello|World
LV_Add( 0, "GUI 2", "is in the house" )
Gui Show,y340,GUI 2 |
|
|