FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour menus 2007
Posts: 566
Joined: Thu Aug 30, 2007 03:40 PM

menus 2007

Posted: Thu Nov 22, 2007 11:59 AM

HI, clause omenu:l2007 := .t. is working only in main menu, but menuitens still in normal mode.

:?:

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM

menus 2007

Posted: Thu Nov 22, 2007 03:08 PM

Norberto,

You have to use the clause 2007 when you create the MENU:

MENU oMenu 2007

if you modify it later on, it will not properly work

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 566
Joined: Thu Aug 30, 2007 03:40 PM

menus 2007

Posted: Thu Nov 22, 2007 03:40 PM

i try like this:

Define 2007 .T.

.
.
.
MENU oWndMnuMain

oMainMenu:l2007 := 2007
.
.
.
BUT ONLY menumain (top) is 2007, menuitems still in normal mode.

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM

menus 2007

Posted: Thu Nov 22, 2007 07:41 PM
Norberto,

Do it this way:
if lUse2007 // Your user wants 2007 look
   MENU oMenu 2007
      ...
else
   MENU oMenu
      ...
endif
regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion