Hello everyone,
Apparently, it's impossible to use the ScrollAreaGadget() and the SplitterGadget() together. Bad news for the PB 4.61 Final

Best regards
Guimauve
Code:
; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
; Project name : Bug ScrollArea + Splitter Gadgets
; File Name : Bug ScrollArea + Splitter Gadgets.pb
; File version: 1.0.0
; Programming : Bug demonstration
; Programmed by : Guimauve
; Date : 25-05-2012
; Last Update : 25-05-2012
; PureBasic code : 4.61 x64 Final
; Platform : LinuxMint 12 x64
; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
; Bug description :
;
; Simple, No gadget are visible within the Window and
; the program seem to hang somehere. I have to kill
; the program with the "Stop" toolbar button while the
; program run with the debugger.And no warning or
; error messages.
;
; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
If OpenWindow(0, 0, 0, 800, 600, "SplitterGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
#Bouton1 = 0
#Bouton2 = 1
#Separateur = 2
ButtonGadget(#Bouton1, 0, 0, 0, 0, "Bouton 1")
ScrollAreaGadget(#Bouton2, 0, 0, 0, 0, 400, 300)
SplitterGadget(#Separateur, 5, 5, 790, 590, #Bouton1, #Bouton2, #PB_Splitter_Separator)
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf
; <<<<<<<<<<<<<<<<<<<<<<<
; <<<<< END OF FILE <<<<<
; <<<<<<<<<<<<<<<<<<<<<<<