ExplorerComboGadget don't work => ok

Just starting out? Need help? Post your questions and find answers here.
Sven
User
User
Posts: 20
Joined: Sat Mar 11, 2006 6:46 pm

ExplorerComboGadget don't work => ok

Post 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
Last edited by Sven on Tue May 23, 2006 1:55 pm, edited 1 time in total.
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

Creates a ComboBox that lets you display a path and all its parent folders.

No child folders.
Sven
User
User
Posts: 20
Joined: Sat Mar 11, 2006 6:46 pm

Post by Sven »

Ok, misunderstanding the german help. Sorry.

Sven
Post Reply