Yes, it is, Harry. You might also want to read the RELEASE PAD, DEFINE PAD and DEFINE BAR topics.
Sorry, I'm at home now, and most of my FP is at the office, but here's a bit of old code to get you going. It won't do anything spectacular since you don't have the full code, but give it a run. Enjoy!
SET SYSMENU TO DEFAULT
SET SYSMENU AUTOMATIC
DEFINE PAD _roy0jwczu OF _MSYSMENU PROMPT "De\<v" COLOR SCHEME 3 ;
AFTER _MWINDOW ;
KEY ALT+V, ""
ON PAD _roy0jwczu OF _MSYSMENU ACTIVATE POPUP Dev
DEFINE POPUP Dev MARGIN RELATIVE SHADOW COLOR SCHEME 4
DEFINE BAR _MWI_DEBUG OF Dev PROMPT "\<Debug"
DEFINE BAR _MWI_TRACE OF Dev PROMPT "\<Trace"
DEFINE BAR _MWI_CMD OF Dev PROMPT "\<Command" ;
KEY CTRL+F2, ""
DEFINE BAR _MWI_View OF Dev PROMPT "\<View"
DEFINE BAR 5 OF Dev PROMPT "\<Reset"
DEFINE BAR 6 OF Dev PROMPT "\-"
DEFINE BAR 7 OF Dev PROMPT "\<Program list"
DEFINE BAR 8 OF Dev PROMPT "\<Update program list"
ON SELECTION BAR 5 OF Dev ;
DO Reset ;
IN LOCFILE("C:\FPD26\DOGAPP\PRGS\AC" ,"FXP;PRG" ,"Where is AC?"

ON SELECTION BAR 7 OF Dev ;
DO ProgList;
IN LOCFILE("C:\FPD26\DOGAPP\PRGS\AC" ,"FXP;PRG" ,"Where is AC?"

ON SELECTION BAR 8 OF Dev ;
DO UpdateTOC;
IN LOCFILE("C:\FPD26\DOGAPP\PRGS\AC" ,"FXP;PRG" ,"Where is AC?"

RETURN