Hello everyone.
I have a system installed on Linux with Wine, and it works fine.
Now, a client installed it on a Mac with Wine as well, and it already works, in part, since it asks for login and then displays the main screen with its menu, but when trying to view any menu option, it only shows a gray bar and the submenu options are not visible, as seen in this image:

This is part of the code where I define the menu:
When the system is configured for Linux, the variable oApp:lLinux == .t. So the menu is simply defined as:
MENU oMenu
At least it works fine on Linux, but now it doesn't on Mac.
Has anyone been able to get a system working on a Mac with Wine?
Best regards.
Carlos Sincuir
I have a system installed on Linux with Wine, and it works fine.
Now, a client installed it on a Mac with Wine as well, and it already works, in part, since it asks for login and then displays the main screen with its menu, but when trying to view any menu option, it only shows a gray bar and the submenu options are not visible, as seen in this image:

This is part of the code where I define the menu:
If oApp:lLinux
MENU oMenu
Else
DEFINE FONT oFontMenu NAME cFont SIZE 0, -12
MENU oMenu 2015 COLORMENU CLR_WHITE,CLR_BLACK FONT oFontMenu HEIGHT 1.96
End
MENUITEM "&Files"
MENU
MENUITEM "&Users..." ;
ACTION SystemUsers( oApp:oSemWnd )
SEPARATOR
MENUITEM "&Companies..."
MENU
MENUITEM FWString( "Maintenance") ;
ACTION CompanyCategory( oApp:oSemWnd )
SEPARATOR
MENUITEM "Legal Documents" ;
ACTION CompanyLegalDocuments()
ENDMENU
MENUITEM "&Agencies..." ;
ACTION Cata01( oApp:oSemWnd )
SEPARATOR
MENUITEM "&Command Line" ACTION CommandLine()
SEPARATOR
MENUITEM "&Backups"
MENU
MENUITEM "Create &Backup..." ACTION TsBackup()
MENUITEM "&Restore Backup..." ACTION TsRestore()
ENDMENU
....MENU oMenu
At least it works fine on Linux, but now it doesn't on Mac.
Has anyone been able to get a system working on a Mac with Wine?
Best regards.
Carlos Sincuir