Page 1 of 1

MENU problem....

Posted: Thu Apr 14, 2016 3:43 pm
by Romeo
I'am using FWH 16.02 & HARBOUR 3.2.0 dev (r1603082110)

I got BIG difference using the program on WINDOWS SERVER_2003.

here ther is image of TESTMNU2.PRG of sample dir with WINDOWS_SERVER_2003 and WINDOWS_7

http://postimg.org/gallery/2s7q9ty02/

Please how resolve the problem ?

tks
Romeo

Re: MENU problem....

Posted: Fri Apr 15, 2016 6:54 am
by Antonio Linares
Romeo,

We are going to review it asap

many thanks for your feedback

Re: MENU problem....

Posted: Fri Apr 15, 2016 2:32 pm
by Romeo
I found difference also between Windows_7 and Windows_XP, but the difference is not so big.

The difference is between my previews very old version FWH 8.10 & Harbour 1.0.1 dev Intl (Rev.9361) and my new version: FWH 16.02 & HARBOUR 3.2.0 dev (r1603082110)

I come back my old version, waiting your solution to avoid other problem with customers

Tks

Romeo

Re: MENU problem....

Posted: Fri Apr 15, 2016 4:37 pm
by cnavarro
Is a problem with change in function cWinVersion

Please, in PDMENU.PRG, Function Fw_MeasureItem( pMitStruct, hSysMenuFont, oWnd )

Change this line

Code: Select all

               if Empty( hMFont ) .and. !IsWinXP()
 
with

Code: Select all

               if Empty( hMFont ) .and. !IsWinXP() .and. ! "2003" $ cWinVersion()
 
Please, in the Function Fw_MeasureItem( pMitStruct, hSysMenuFont, oWnd ), this line, It appears twice

Re: MENU problem....

Posted: Fri Apr 15, 2016 5:32 pm
by Romeo
tks
i will check
R

Re: MENU problem....

Posted: Mon Apr 18, 2016 3:05 pm
by Romeo
Great
It works !

R