Jump to content

Recommended Posts

Posted

hi

i am tryin to do simple graph as in example but i didnt get it work, who know whats wrong?

here is my work

#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 447, 193, 125)
$graph1 = GUICtrlSetGraphic(-1,$GUI_GR_PIE, 58,50, 40,-60,90)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit

    EndSwitch
WEnd
Posted (edited)

You have to create the graphic using GUICtrlCreateGraphic before you can set it.

#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 447, 193, 125)
$graph = GUICtrlCreateGraphic(20,100,100,100)
$graph1 = GUICtrlSetGraphic(-1,$GUI_GR_PIE, 58,50, 40,-60,90)
GUICtrlSetGraphic(-1,$GUI_GR_COLOR, 0x00ff00, 0x00ff00)
GUICtrlSetGraphic(-1,$GUI_GR_PIE, 58,50, 40,-60,90)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit

    EndSwitch
WEnd
Edited by BigDod


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

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...