Code: Select all
If OpenWindow(0, 0, 0, 300, 300, "ExplorerTreeGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
ExplorerTreeGadget(0, 10, 10, 280, 280, "C:\Workspace\icis;*.sql;*.txt",#PB_Explorer_NoMyDocuments|#PB_Explorer_NoDriveRequester)
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf
"C:\Workspace\icis;*.sql;*.txt" => This filters the filetypes but don't set the path
"C:\Workspace\icis\;*.sql;*.txt" => this sets the path but the filetypes were ignored
2) I want the ExplorerTreeGadget only shows folders and files under "C:\Workspace\icis\". But all root folders should be ignored and not shown. I know I can delete them or use create my own Gadget with a TreeGadget. But this is not the same.

