ExplorerComboGadget don't work => ok
Posted: Mon May 22, 2006 5:30 pm
Code: Select all
;ExplorerComboGadget don't work
;If you start with a subdirectory, it is not possible to select
;any other subdirectory, the're not shown. So if you start with
;a drive, no directory is available.
;It does not depent on the flags, see example below from help file, slightly modified.
;Testet with WinXP, PB4final
If OpenWindow(0, 0, 0, 400, 100, "ExplorerComboGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) And CreateGadgetList(WindowID(0))
ExplorerComboGadget(0, 10, 40, 380, 200, "C:\WINDOWS\Help\Tours")
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf