voilà mon purebasic me fait une drôle de chose.
quand je lance ce code :
Code : Tout sélectionner
If OpenWindow(0, 0, 0, 800, 800, "", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
If StartDrawing(WindowOutput(0))
For x = 1 To 800 Step 10
For y = 1 To 800 Step 10
Plot(x, y, RGB(255,255,255))
Next
Next
StopDrawing()
EndIf
Repeat : Event = WaitWindowEvent() : Until Event = #PB_Event_CloseWindow
EndIf
aucun souci mais ou sa se corse c'est la :
Code : Tout sélectionner
If OpenWindow(0, 0, 0, 800, 800, "", #PB_Window_SystemMenu )
If StartDrawing(WindowOutput(0))
For x = 1 To 800 Step 10
For y = 1 To 800 Step 10
Plot(x, y, RGB(255,255,255))
Next
Next
StopDrawing()
EndIf
Repeat : Event = WaitWindowEvent() : Until Event = #PB_Event_CloseWindow
EndIf

est ce que quel qu'un pourrai m'expliquer svp ?