FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour VERY URGENT PROBLEM concerning menu class
Posts: 1467
Joined: Mon Oct 10, 2005 11:26 AM
VERY URGENT PROBLEM concerning menu class
Posted: Thu Oct 22, 2015 10:22 AM

Hello,

I noticed that a lot of work has been done on the menu class. The problem which appeared a few weeks ago seems to have been solved.

But today I noticed a new problem :

A customer of mine has still 2 PC running on Windows XP. On these PC's, the different menues are placed on top of each other. They are not readable. They are absolutely not useable.

I don't have Windows XP anymore so I can't give you an example. I just use the standard menu class which was provided in the FWH 15.09.

Anyone any idea what's wrong?

Shouldn't there be a backwards compatibility?

Thanks a lot in advance.

Regards,

Michel D.
Genk (Belgium)


_____________________________________________________________________________________________

I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773

Posts: 8523
Joined: Tue Dec 20, 2005 07:36 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Thu Oct 22, 2015 12:19 PM
João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Thu Oct 22, 2015 03:55 PM

Michel,

We are going to check it on XP again.

Could you get a screenshot ? thanks

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1467
Joined: Mon Oct 10, 2005 11:26 AM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Thu Oct 22, 2015 04:06 PM
karinha wrote:look please.

http://forums.fivetechsupport.com/viewtopic.php?f=16&t=31378&start=15

Regards,


I'm very sorry but I don't speak one single word of Spanish.

Regards,

Michel D.
Genk (Belgium)


_____________________________________________________________________________________________

I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773

Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Fri Oct 23, 2015 02:29 PM

Michel

Problem solved?

Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Posts: 1467
Joined: Mon Oct 10, 2005 11:26 AM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Fri Oct 23, 2015 09:14 PM

Cristobal,

It seems that the problem has been solved.

Thanks a lot for your help.

Regards,

Michel D.
Genk (Belgium)


_____________________________________________________________________________________________

I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Sat Oct 24, 2015 06:57 AM

Cristobal,

great work!

many thanks :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 858
Joined: Fri Oct 07, 2005 12:00 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Sun Oct 25, 2015 09:13 PM

Hi,
could you please share the solution (eg. an updated tmenu class) ?
I still have problem with the menu with a FWH app in a cloud environment.
Thank you

Best Regards,



Marco Turco

SOFTWARE XP LLP
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Mon Oct 26, 2015 12:00 AM

Marco,

We are going to publish a new FWH 15.09 build 4, we need a couple of days.

In the meantime, if you are in a hurry, we can email you the FWH libs to solve the menu issues

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 858
Joined: Fri Oct 07, 2005 12:00 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Wed Oct 28, 2015 08:48 PM

Hi,
I don't know if the menu problem on XP is solved,
anyway on my app the problem is still there
It seems a refresh problem.

http://www.softwarexp.co.uk/beta/test/test.html

Best Regards,



Marco Turco

SOFTWARE XP LLP
Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Wed Oct 28, 2015 10:03 PM

Marco,

Are you already using FWH 15.09 build 4 ?

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 858
Joined: Fri Oct 07, 2005 12:00 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Thu Oct 29, 2015 09:56 PM

Yes, I'm testing with build 4. I'm running the app in a VM machine on cloud environment.
The menus were fine with FWH Dec 2012

See this video showing the problem http://www.softwarexp.co.uk/beta/test/test.html

To access go to

www.condominio.biz
user: testca
pwd: A12345678

Source code:
// Some PullDown menu samples

include "FIVEWIN.CH"

static oWnd

//------------------------------------------------------------//

FUNCTION Main()

DEFINE WINDOW oWnd ;
TITLE "Testing PullDown Menus" ;
MENU BuildMenu()

ACTIVATE WINDOW oWnd

RETURN NIL

//------------------------------------------------------------//

FUNCTION BuildMenu()

local oMenu, oMenu1, oMenu2
local oSub1,oSub2,oSub3
MENU oMenu
MENUITEM "Test 1"
MENU
MENUITEM "Item 1"
MENUITEM "Item 2"
ENDMENU
MENUITEM "Test 2"
MENU
MENUITEM "Item 1"
MENUITEM "Item 2"
ENDMENU
MENUITEM "Test 3"
MENU
MENUITEM "Item 1"
MENUITEM "Item 2"
ENDMENU
MENUITEM "Test 4"
MENU
MENUITEM "Item 1"
MENUITEM "Item 2"
ENDMENU
ENDMENU
// oMenu2:Disable()
RETURN (oMenu)

Best Regards,



Marco Turco

SOFTWARE XP LLP
Posts: 1467
Joined: Mon Oct 10, 2005 11:26 AM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Thu Oct 29, 2015 10:32 PM

I noticed the same problem, but .... it doesn't happen on every PC. On some it does, on other it doesn't.

Very strange.

Regards,

Michel D.
Genk (Belgium)


_____________________________________________________________________________________________

I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773

Posts: 858
Joined: Fri Oct 07, 2005 12:00 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Fri Oct 30, 2015 07:42 AM

It seems like a refresh() problem.

Best Regards,



Marco Turco

SOFTWARE XP LLP
Posts: 6755
Joined: Wed Feb 15, 2012 08:25 PM
Re: VERY URGENT PROBLEM concerning menu class
Posted: Fri Oct 30, 2015 09:28 PM
Marco, You can try ?

Code (fw): Select all Collapse
MENU oMenu 2007


That version of operating system you run?
Cristobal Navarro

Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo

El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces