Reg Separators!!

Hi Everybody,

I want to know how to bring separators in Menu; consider FILE menu in any of the application, before providing a menu-item like EXIT i need to give a long line in the menu. What should be done in this case to get the separator...

Can anyone help me out!!:confused:
 
Hi Everybody,

I want to know how to bring separators in Menu; consider FILE menu in any of the application, before providing a menu-item like EXIT i need to give a long line in the menu. What should be done in this case to get the separator...

Can anyone help me out!!:confused:


Try this:
Code:
DEFINE SUB-MENU m_Bestand 
       MENU-ITEM m_Open         LABEL "Open"          
       MENU-ITEM m_Save         LABEL "Save"          
       MENU-ITEM m_Save_As      LABEL "Save As"       
       RULE
       MENU-ITEM m_Afsluiten    LABEL "Afsluiten"     .
 
DEFINE MENU MENU-BAR-C-Win MENUBAR
       SUB-MENU  m_Bestand      LABEL "Bestand"
 
Back
Top