deja bonne fete a toutes les mamans

ensuite je cherche a baisser la barre de son qui se trouve a coter de l'horloge grace a un "trackbargadget" est-ce possible.
voici un code d''exemple
Code : Tout sélectionner
;- Window Constants
Enumeration
#Window_0
EndEnumeration
;- Gadget Constants
Enumeration
#TrackBar_0
EndEnumeration
If OpenWindow(#Window_0, 216, 0, 600, 86, #PB_Window_SystemMenu | #PB_Window_TitleBar | #PB_Window_WindowCentered , "volume windows")
If CreateGadgetList(WindowID())
TrackBarGadget(#TrackBar_0, 30, 20, 530, 40, 0, 10)
EndIf
EndIf
Repeat
event = WaitWindowEvent()
If event = #PB_EventGadget
Select EventGadgetID()
EndSelect
EndIf
Until event = #PB_EventCloseWindow


@++