Hi,
The following line are supposed to display something as soon as
the window is moved :
Repeat
EVT_WIND.l = WaitWindowEvent()
If EVT_WIND = #PB_Event_MoveWindow
Gosub Display
EndIf
If EVT_WIND = #PB_Event_CloseWindow ; Bouton 'fermer'
Quit = 1
EndIf
Until Quit = 1
End
Nothing happens.... 'Display' Subroutine works fine (if I move
the gosub out of the If-EndIf.
Something I misunderstood ???
