Btnbmp in GET ACTION show border on MouseOver

Btnbmp in GET ACTION show border on MouseOver

Postby dutch » Tue Dec 13, 2016 6:25 am

Dear Antonio,

I use 16.11 build 1 and it shows border of Btnbmp (GET ACTION clause) when MouseOver as picture. It doesn't show in previous version.
Imageposted image
Regards,
Dutch

FWH 19.01 / xHarbour Simplex 1.2.3 / BCC73 / Pelles C / UEStudio
FWPPC 10.02 / Harbour for PPC (FTDN)
ADS V.9 / MySql / MariaDB
R&R 12 Infinity / Crystal Report XI R2
(Thailand)
User avatar
dutch
 
Posts: 1535
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand

Re: Btnbmp in GET ACTION show border on MouseOver

Postby Antonio Linares » Tue Dec 13, 2016 11:19 am

Dutch,

This example seems to work fine:
Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

   local oDlg, cTest := Space( 10 )

   DEFINE DIALOG oDlg

   @ 2, 2 GET cTest ACTION MsgInfo( "ok" ) COLOR 0, CLR_WHITE

   ACTIVATE DIALOG oDlg CENTERED

return nil


What manifest file are you using ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41321
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Btnbmp in GET ACTION show border on MouseOver

Postby dutch » Thu Dec 15, 2016 7:40 am

Dear Antonio,
Antonio Linares wrote:What manifest file are you using ?

This is manifest that I use.
Code: Select all  Expand view
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    version="1.0.0.0"
    processorArchitecture="X86"
    name="EASYFO Hotel Software.EASYFO.32bits"
    type="win32"
/>
<description>EASYFO Front Office System.</description>
<dependency>
    <dependentAssembly>
        <assemblyIdentity
            type="win32"
            name="Microsoft.Windows.Common-Controls"
            version="6.0.0.0"
            processorArchitecture="X86"
            publicKeyToken="6595b64144ccf1df"
            language="*"
        />
    </dependentAssembly>
</dependency>
</assembly>
 
Regards,
Dutch

FWH 19.01 / xHarbour Simplex 1.2.3 / BCC73 / Pelles C / UEStudio
FWPPC 10.02 / Harbour for PPC (FTDN)
ADS V.9 / MySql / MariaDB
R&R 12 Infinity / Crystal Report XI R2
(Thailand)
User avatar
dutch
 
Posts: 1535
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand

Re: Btnbmp in GET ACTION show border on MouseOver

Postby Antonio Linares » Thu Dec 15, 2016 7:51 am

Dutch,

the manifest file seems fine

Have you tested the example that I posted ? Does it behave fine ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41321
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Btnbmp in GET ACTION show border on MouseOver

Postby dutch » Thu Dec 15, 2016 10:22 am

Dear Antonio,

I need the bitmap button with transparent and noborder while MouseOver. In older version is working fine.
Imageimage hosting site
Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

   local oDlg, cTest := Space( 10 )

   DEFINE DIALOG oDlg

   @ 2, 2 GET cTest ACTION MsgInfo( "ok" ) COLOR 0, CLR_WHITE ;
      BITMAP "bdate"
           

   ACTIVATE DIALOG oDlg CENTERED

return nil

Code: Select all  Expand view
bdate BITMAP "../bitmaps/date.bmp"
1 24 "..\WindowsXP.Manifest" 
Regards,
Dutch

FWH 19.01 / xHarbour Simplex 1.2.3 / BCC73 / Pelles C / UEStudio
FWPPC 10.02 / Harbour for PPC (FTDN)
ADS V.9 / MySql / MariaDB
R&R 12 Infinity / Crystal Report XI R2
(Thailand)
User avatar
dutch
 
Posts: 1535
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand

Re: Btnbmp in GET ACTION show border on MouseOver

Postby Antonio Linares » Thu Dec 15, 2016 11:04 am

Dutch,

Could you please post the same screenshots built with the previous version that you are using ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41321
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Btnbmp in GET ACTION show border on MouseOver

Postby nageswaragunupudi » Fri Dec 16, 2016 1:13 am

Code: Select all  Expand view
  DEFINE DIALOG oDlg

   @ 2, 2 GET oGet VAR cTest ACTION MsgInfo( "ok" ) COLOR 0, CLR_WHITE ;
      BITMAP "bdate"

   oGet:lBtnTransparent := .t.

   ACTIVATE DIALOG oDlg CENTERED ;
      ON INIT ( oGet:oBtn:lBoxSelect := .f., ;
                oGet:oBtn:lFlatStyle := .t. )
 
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10253
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: Btnbmp in GET ACTION show border on MouseOver

Postby dutch » Fri Dec 16, 2016 3:22 am

Antonio Linares wrote:Dutch,

Could you please post the same screenshots built with the previous version that you are using ?

Here it is. FWH13.12
Imageimage hosting over 10mb
Regards,
Dutch

FWH 19.01 / xHarbour Simplex 1.2.3 / BCC73 / Pelles C / UEStudio
FWPPC 10.02 / Harbour for PPC (FTDN)
ADS V.9 / MySql / MariaDB
R&R 12 Infinity / Crystal Report XI R2
(Thailand)
User avatar
dutch
 
Posts: 1535
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand

Re: Btnbmp in GET ACTION show border on MouseOver

Postby Antonio Linares » Fri Dec 16, 2016 9:14 am

Dutch,

thanks

Rao has shown the right way to do it now
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41321
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Btnbmp in GET ACTION show border on MouseOver

Postby dutch » Sun Dec 18, 2016 12:14 pm

Dear Antonio & Rao,

I've fixed it already as Mr.Rao recommendation.

Thanks a lot.
Regards,
Dutch

FWH 19.01 / xHarbour Simplex 1.2.3 / BCC73 / Pelles C / UEStudio
FWPPC 10.02 / Harbour for PPC (FTDN)
ADS V.9 / MySql / MariaDB
R&R 12 Infinity / Crystal Report XI R2
(Thailand)
User avatar
dutch
 
Posts: 1535
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 12 guests