Verfasst: 23.01.2007 06:52
Hier mal ein kurzes Snippet, damit meine commandleiste endlich kommt
Viel fehlt nicht 
Gruß
Thomas

Code: Alles auswählen
If OpenWindow(0, #PB_Ignore, #PB_Ignore, 640, 27, "")
AddKeyboardShortcut(0, #PB_Shortcut_Return, 0)
CreateGadgetList(WindowID(0))
ComboBoxGadget(0, 3, 3, 634, 100, #PB_ComboBox_Editable)
Repeat
Select WaitWindowEvent()
Case #PB_Event_CloseWindow
Break
Case #PB_Event_Menu
Select EventMenu()
Case 0
If GetActiveGadget() = 0
;SetCurrentDirectory(bla)
AddGadgetItem(0, -1, GetGadgetText(0))
WinExec_(GetGadgetText(0), #SW_SHOWNORMAL)
EndIf
EndSelect
EndSelect
ForEver
EndIf

Gruß
Thomas