ExplorerListGadget - Verknüpfung [..] Ordner fehlt ??
Verfasst: 08.05.2009 19:44
Hallo,
ich habe ein Window mit einem ExplorerListGadget erstellt.
Das funktioniert auch alles super, doch es fehlt der Eintrag:
Verknüpfung [..] zum übergeordneten Ordner
Könnte mal jemand schauen, woran das liegt? Wäre toll.
Hier ist der Code:
Vielen Dank für Eure Hilfe.
Gruß
Michael
ich habe ein Window mit einem ExplorerListGadget erstellt.
Das funktioniert auch alles super, doch es fehlt der Eintrag:
Verknüpfung [..] zum übergeordneten Ordner
Könnte mal jemand schauen, woran das liegt? Wäre toll.
Hier ist der Code:
Code: Alles auswählen
;- Window Constants
;
Enumeration
#main
EndEnumeration
;- Gadget Constants
;
Enumeration
#ExplorerTree0
EndEnumeration
Procedure Open_main()
If OpenWindow(#main, 216, 0, 600, 250, "StartFenster", #PB_Window_SystemMenu | #PB_Window_SizeGadget | #PB_Window_TitleBar | #PB_Window_ScreenCentered | #PB_Window_WindowCentered )
SetWindowColor(#main,RGB(235,234,219))
ExplorerListGadget(#ExplorerTree0, 20, 20, 450, 160, "*.xls",#PB_Explorer_AutoSort|#PB_EventType_LeftDoubleClick|#PB_Explorer_NoSort|#PB_Explorer_BorderLess)
SetGadgetColor(#ExplorerTree0, #PB_Gadget_BackColor, RGB(235,234,219))
RemoveGadgetColumn(#ExplorerTree0, 2)
RemoveGadgetColumn(#ExplorerTree0, 1)
SendMessage_(GadgetID(#ExplorerTree0), #LVM_SETCOLUMNWIDTH, column, #LVSCW_AUTOSIZE_USEHEADER)
EndIf
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndProcedure
Open_main()
Gruß
Michael