Page 1 of 1

ExplorerComboGadget don't work => ok

Posted: Mon May 22, 2006 5:30 pm
by Sven

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 
Sven

Posted: Mon May 22, 2006 6:16 pm
by Trond
Creates a ComboBox that lets you display a path and all its parent folders.

No child folders.

Posted: Tue May 23, 2006 1:52 pm
by Sven
Ok, misunderstanding the german help. Sorry.

Sven