Jump to content

Recommended Posts

Posted (edited)

Hello Piano_Man!

I created the blank pictures before the GuiSetState() and then used GuiCtrlSetImage()

Sorry if my advise is stupid, you try this?:

GuiCreate('Testing', 190, 125)

$x = 10

For $index = 1 to 7 
    GuiCtrlCreatePic(@ScriptDir & '\c' & $index & '.jpg', $x, 15, 71, 96)
    $x += 16
Next

GuiSetState()

While 1 
    Switch GuiGetMsg() 
        Case -3 
            Exit 
            
    EndSwitch 
WEnd

:)

Edited by rasim

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
×
×
  • Create New...