Button Bar JPG or PNG

Button Bar JPG or PNG

Postby cdmmaui » Tue Nov 01, 2016 6:33 pm

Hello Everyone,

We are looking to improve the looks of our application home screen. Is it possible to use JPG or PNG instead of BMP on buttonbar?

Also, would anyone provide a sample of the their home screen with code?

We have not updated our home screen layout in a very long time and we want to provide a more professional look.

Thanks in advance for your assistance!
*~*~*~*~*~*~*~*~*~*
Darrell Ortiz
CDM Software Solutions, Inc.
https://www.cdmsoft.com
User avatar
cdmmaui
 
Posts: 689
Joined: Fri Oct 28, 2005 9:53 am
Location: Houston ∙ Chicago ∙ Los Angeles ∙ Miami ∙ London ∙ Hong Kong

Re: Button Bar JPG or PNG

Postby luiz53 » Tue Nov 01, 2016 8:43 pm

Image
luiz53
 
Posts: 43
Joined: Fri Jun 01, 2007 12:41 pm

Re: Button Bar JPG or PNG

Postby cnavarro » Tue Nov 01, 2016 8:55 pm

With resources use type 10 for others images


cut16 10 "./res/g1045A.png"
mytest 10 "../icons/blue.ico"
isok BITMAP "../bitmaps//level11.bmp"

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
User avatar
cnavarro
 
Posts: 6500
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Button Bar JPG or PNG

Postby cdmmaui » Tue Nov 01, 2016 9:02 pm

Thank you so much!
*~*~*~*~*~*~*~*~*~*
Darrell Ortiz
CDM Software Solutions, Inc.
https://www.cdmsoft.com
User avatar
cdmmaui
 
Posts: 689
Joined: Fri Oct 28, 2005 9:53 am
Location: Houston ∙ Chicago ∙ Los Angeles ∙ Miami ∙ London ∙ Hong Kong

Re: Button Bar JPG or PNG

Postby Rick Lipkin » Wed Nov 02, 2016 3:56 pm

Cristobal

How can you compile into .res with Borland ... the highest resolution is 24 bit .. Borland will not compile 32 bit image ?

Rick Lipkin
User avatar
Rick Lipkin
 
Posts: 2618
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: Button Bar JPG or PNG

Postby Carlos Mora » Wed Nov 02, 2016 5:24 pm

Hi Rick,
Wich Borland? I think the latest versions should allow 32 bits bmps.
I've been using porc.exe, the Resource Compiler included in Pelles C, for years to include 32 bit bmp into resources. It works great.

Best regards,
Carlos
Saludos
Carlos Mora
http://harbouradvisor.blogspot.com/
StackOverflow http://stackoverflow.com/users/549761/carlos-mora
“If you think education is expensive, try ignorance"
Carlos Mora
 
Posts: 988
Joined: Thu Nov 24, 2005 3:01 pm
Location: Madrid, España

Re: Button Bar JPG or PNG

Postby Rick Lipkin » Wed Nov 02, 2016 7:37 pm

Carlos

I am using Bcc72 .. I have been using Bcc70 for a long time .. Brc32 just will not compile any .bmp greater than 24 bit .. You can import a 32 bit bmp into an .rc, but when you compile your .rc into .res .. the compiler blows up. To be honest, I just installed Bcc72 and I haven't tried to compile a 32 bit .bmp in a resource.

Rick Lipkin
User avatar
Rick Lipkin
 
Posts: 2618
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: Button Bar JPG or PNG

Postby cnavarro » Thu Nov 03, 2016 1:16 am

Rick Lipkin wrote:Cristobal

How can you compile into .res with Borland ... the highest resolution is 24 bit .. Borland will not compile 32 bit image ?

Rick Lipkin


Rick, if you define you image of 32 bits:

files BITMAP "../bitmaps/alphabmp/files.bmp"


Borland fails to compile the resource, but, if you define your image 32 bits so:

files 10 "../bitmaps/alphabmp/files.bmp"


The resource is compiled perfectly

Image

Image

Image
Last edited by cnavarro on Thu Nov 03, 2016 1:37 am, edited 1 time in total.
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
User avatar
cnavarro
 
Posts: 6500
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Button Bar JPG or PNG

Postby cnavarro » Thu Nov 03, 2016 1:24 am

As an additional comment, I use the resource compiler brc32.exe also included in Borland 7
My previous post also works with the resource compiler rc.exe

%bcdir%\bin\brc32


Rick, happy, happy birthday
Have a good day in the company of family and friends
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
User avatar
cnavarro
 
Posts: 6500
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Button Bar JPG or PNG

Postby Rick Lipkin » Thu Nov 03, 2016 1:02 pm

Cristobal .. thanks for your kind words .. planning lunch with my wife this afternoon .. my son will be coming home for the weekend to spend time some time with his Mom and me and a hamburger and hot dog cook-out Sunday evening.

I have all my .bmp's in one .rc ( icons.rc ) .. and I do not see where I can define 10 in Resedit. See screen shot below... Again, thanks !

Rick Lipkin

Image
User avatar
Rick Lipkin
 
Posts: 2618
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: Button Bar JPG or PNG

Postby cnavarro » Thu Nov 03, 2016 1:18 pm

Rick, I add these resources with a code editor ( text )

Image


#define ALPHABMP 10

olga1 ALPHABMP "../bitmaps/olga1.jpg"
files ALPHABMP "../bitmaps/alphabmp/files.bmp"



To enjoy family and cookout
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
User avatar
cnavarro
 
Posts: 6500
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Button Bar JPG or PNG

Postby Massimo Linossi » Thu Nov 03, 2016 4:17 pm

Happy birthday Rick !!!
User avatar
Massimo Linossi
 
Posts: 495
Joined: Mon Oct 17, 2005 10:38 am
Location: Italy

Re: Button Bar JPG or PNG

Postby Rick Lipkin » Thu Nov 03, 2016 5:09 pm

Cristobal

I understand .. I will just create a new ( manual ) group '10' and load my icons there .. I will let you know .. Thanks for the explanation !

Rick Lipkin


Massimo .. thanks for your thoughts !
User avatar
Rick Lipkin
 
Posts: 2618
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Re: Button Bar JPG or PNG

Postby Enrico Maria Giordano » Fri Nov 04, 2016 3:31 pm

Rick... Happy Birthday! :-)

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8315
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: Button Bar JPG or PNG

Postby Rick Lipkin » Fri Nov 04, 2016 5:06 pm

Enrico

Thank you very much .. you have been an inspiration for me over the ( many ) years!

Rick Lipkin
User avatar
Rick Lipkin
 
Posts: 2618
Joined: Fri Oct 07, 2005 1:50 pm
Location: Columbia, South Carolina USA

Next

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 87 guests