MENU problem....

Post Reply
Romeo
Posts: 328
Joined: Thu Jan 25, 2007 3:53 pm
Location: Milan (Italy)

MENU problem....

Post 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
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: MENU problem....

Post by Antonio Linares »

Romeo,

We are going to review it asap

many thanks for your feedback
regards, saludos

Antonio Linares
www.fivetechsoft.com
Romeo
Posts: 328
Joined: Thu Jan 25, 2007 3:53 pm
Location: Milan (Italy)

Re: MENU problem....

Post 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
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: MENU problem....

Post 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
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Romeo
Posts: 328
Joined: Thu Jan 25, 2007 3:53 pm
Location: Milan (Italy)

Re: MENU problem....

Post by Romeo »

tks
i will check
R
Romeo
Posts: 328
Joined: Thu Jan 25, 2007 3:53 pm
Location: Milan (Italy)

Re: MENU problem....

Post by Romeo »

Great
It works !

R
Post Reply