Hi All
Here you are TSButton with a reported bugs fixed
http://www.box.net/shared/vnfvorjswk
Best regards.
Manuel Mercado
Hi All
Here you are TSButton with a reported bugs fixed
http://www.box.net/shared/vnfvorjswk
Best regards.
Manuel Mercado
REDEFINE SBUTTON oBtn[1] ID 11 ;
RESOURCE 'SAVE1', 'SAVE1', 'SAVE3', 'SAVE4' ;
WHEN !empty(cType).and.!empty(cCode).and.!empty(cEDesc) ;
PROMPT TE('ºÑ¹·Ö¡','&Save') ;
ACTION (lSave := .T. , oDlg:End()) ;
COLOR {|oBtn| If( oBtn:lMouseOver, CLR_YELLOW, CLR_BLACK ) } ;
TEXT ON_RIGHTdutch wrote:I've found strange display. When I refer Bitmap from resource, if the name is 'SAVE'. It cannot display the Bitmap but as following command. When rename to another (whaterver). It show fine.
Dear Manuel,
The previous version 6.1 (first release that including XP CRYSTAL OFFICE look).
Regards,
Dutch
Hello Master
Still the ROUNDRECT clause is not taken care of in this new version.
It is still showing the buttons as RECTACTIGLE only.
Regards
RAMESHBABU wrote:Still the ROUNDRECT clause is not taken care of in this new version.It is still showing the buttons as RECTACTIGLE only.

Hi mmercado :
I have problem about ver6.2 .
if I define some Button Disable , Other Button will ALWAYS FRESH .
Is it BUG ?
please Try SOURCE , oBtm2 always fresh:
LOCAL lWHEN:=.F.
REDEFINE SBUTTON oBTM1 ID 32 OF oDlg ;
WHEN lWHEN ;
BRUSH oBRU_COLOR[T_COLOR_WOOD] ;
LOOK W97 ;
TEXT POSITION ON_RIGHT ;
ACTION ( oDlg:END() )
REDEFINE SBUTTON oBTM2 ID 34 OF oDlg ;
BRUSH oBRU_COLOR[T_COLOR_WOOD] ;
LOOK W97 ;
TEXT POSITION ON_RIGHT ;
ACTION ( oDlg:END() )
***** OR
REDEFINE SBUTTON oBTM1 ID 32 OF oDlg ;
BRUSH oBRU_COLOR[T_COLOR_WOOD] ;
LOOK W97 ;
TEXT POSITION ON_RIGHT ;
ACTION ( oDlg:END() )
REDEFINE SBUTTON oBTM2 ID 34 OF oDlg ;
BRUSH oBRU_COLOR[T_COLOR_WOOD] ;
LOOK W97 ;
TEXT POSITION ON_RIGHT ;
ACTION ( oDlg:END() )
ACTIVATE DIALOG oDlg ;
ON INIT ( oBTM1:DISABLE() )
kokoo KAO