je souhaite créer un graphique avec des variables contenues dans une feuille excel ceci est'il possible, peut on creer une base de données avec purebasic.
un exemple de programme serait bienvenu!
merci beaucoup
denis

Code : Tout sélectionner
OpenWindow(0, 200, 200, 100, 125, #PB_Window_BorderLess, "Horloge")
Timer = SetTimer_(WindowID(), 0, 1000, 0)
PostMessage_(WindowID(), #WM_Timer,0,0)
Repeat
Event = WindowEvent()
If Event = #WM_Timer
StartDrawing(WindowOutput())
Locate(0,0)
h = (Hour(Date())-3)*30
m = (Minute(Date())-15)*6
s = (Second(Date())-15)*6
Circle(50, 50, 50, RGB(0,0,150))
Line(50,50,Cos(s*(3.14159265/180))*45,Sin(s*(3.14159265/180))*45,RGB(0,250,0))
Line(50,50,Cos(m*(3.14159265/180))*35,Sin(m*(3.14159265/180))*35,RGB(250,0,0))
Line(50,50,Cos(h*(3.14159265/180))*25,Sin(h*(3.14159265/180))*25,RGB(250,250,250))
Locate(25,105)
FrontColor(200, 0, 200)
DrawText(FormatDate("%hh:%ii:%ss", Date()))
StopDrawing()
EndIf
Until Event = #PB_EventCloseWindow