redefines SAY osay_troco VAR vtroco picture '@E 999,999.99 " ID 303 of odlg_pag UPDATE FONT oFont_Troco COLOR _CORPADVEN2, _CORPADRAO
osay_troco: ltransparent: = .t.
Silvio.Falconi wrote:on xp (professional sp3) there is also the error !!!
note : menus are white and then where there are labels of the menu background is of another color and at the end of the window there is a cut
this afternoon I try on Win7/10
tiaofw wrote:In Portuguese / Brazilian system the comma separating the decimal point and the homes of thousands.
It should appear as follows: 999.999,99
Thanks,
::SetText( ::cCaption ) // here is the bug
SetWindowText( ::hWnd, ::cCaption )
METHOD VarPut( cValue ) CLASS TSay
if ! Empty( ::cPicture )
cValue = Transform( cValue, ::cPicture )
else
cValue = cValToChar( cValue )
endif
::bGet = { || cValue }
return nil
METHOD VarPut( cValue ) CLASS TSay
::bGet = { || cValue }
return nil
#include "FiveWin.ch"
static oWnd,oBar,oExit
static oMsgItem3,oMsgItem2,cMsgBar
//----------------------------------------------------------------------------//
function Main()
local oWnd
cMsgBar:= "test"
DEFINE WINDOW oWnd TITLE "Test" ;
MENU BuildMenu() ;
COLOR CLR_BLACK, GetSysColor( 15 ) - Rgb( 30, 30, 30 )
SET MESSAGE OF oWnd TO cMsgBar CENTER NOINSET
DEFINE MSGITEM oMsgItem2;
OF oWnd:oMsgBar ;
PROMPT cMsgBar ;
SIZE 100 ;
BITMAPS "MSG_LOTUS", "MSG_LOTUS";
TOOLTIP " " + i18n("Acerca de...") + " ";
ACTION MsgInfo( "Test de Full Single Document Interface" )
DEFINE MSGITEM oMsgItem3 OF oWnd:oMsgBar ;
SIZE 132 ;
TOOLTIP i18n( "Visitar la web de alanit en internet" ) ;
PROMPT "www.alanit.com" ;
COLOR CLR_HBLUE, GetSysColor(15) ;
ACTION NIL
oWnd:oMsgBar:DateOn()
BuildBtnBar()
ACTIVATE WINDOW oWnd
return nil
//----------------------------------------------------------------------------//
Function BuildBtnBar()
local oBtnTbl
DEFINE BUTTONBAR oBar _3D SIZE 44, 46 OF oWnd 2015
oBar:bRClicked := { || .t. }
DEFINE BUTTON OF oBar ;
RESOURCE "BB1" ;
TOOLTIP i18n( "Gestión de documentos" ) ;
MESSAGE i18n( "Gestión de del fichero de documentos." ) ;
ACTION NIL ;
NOBORDER
RETURN nil
//----------------------------------------------------------------------------//
Function BuildMenu()
local oMenu
MENU oMenu 2015 //2015 try with 2015 or nothing...
MENUITEM "&Archivo"
MENU
MENUITEM i18n( "Especificar impresora" ) ;
RESOURCE "PRINTER" ; // ON WINDOWS SEVEN IF NOT FOUND RESOURCEs IT INSERT BLACK LINES
ACTION PrinterSetup() ;
MESSAGE i18n( " Establecer la Configuración de su impresora. " )
SEPARATOR
MENUITEM i18n( "Salir" ) ;
ACTION oWnd:end() ;
MESSAGE i18n( " Terminar la ejecución del programa. " )
ENDMENU
ENDMENU
RETURN oMenu
//----------------------------------------------------------------------------//
This bug was introduced in FWH 15.09.
Please apply this fix:
For this line 217 in Method Initiate() in say.prg
CODE: SELECT ALL EXPAND VIEW
::SetText( ::cCaption ) // here is the bug
substitute this line
CODE: SELECT ALL EXPAND VIEW
SetWindowText( ::hWnd, ::cCaption )
There is another bug in method VarPut(), though this is never reported.
Better this is also corrected:
Replace this function
CODE: SELECT ALL EXPAND VIEW
METHOD VarPut( cValue ) CLASS TSay
if ! Empty( ::cPicture )
cValue = Transform( cValue, ::cPicture )
else
cValue = cValToChar( cValue )
endif
::bGet = { || cValue }
return nil
Substitute
CODE: SELECT ALL EXPAND VIEW
METHOD VarPut( cValue ) CLASS TSay
::bGet = { || cValue }
return nil
This fix is adopted for next release
Silvio.Falconi wrote:for cNavarro
test.prg to try
note :
on xp thereis that err at end of window
on Seven if menuitem not found resource the procedure insert black lines ( on Xp it is right)
you must try with all features ( 2007, 2010, 2013, 2015) for buttonbar msgbar and menus
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: No registered users and 83 guests