Help about Combobox, bitmap, resource

Post Reply
Horizon
Posts: 1329
Joined: Fri May 23, 2008 1:33 pm
Has thanked: 6 times
Been thanked: 1 time

Help about Combobox, bitmap, resource

Post by Horizon »

Hi,

I have command like that.

Code: Select all | Expand

    @ 198,55 COMBOBOX oRenkKodu Var xBG_Renk Of oDlg Pixel;
                        ITEMS {"   Beyaz", "   Mavi", "   Rosso", "   Sarı", "   Yeşil", "   Kırmızı"} SIZE 100,12 ;
                        BITMAPS {oApp:cDir16x16 + "sWhite.bmp",;
                oApp:cDir16x16 + "sBlue.bmp",;
                oApp:cDir16x16 + "sRosso.bmp",;
                oApp:cDir16x16 + "sYellow.bmp",;
                oApp:cDir16x16 + "sGreen.bmp",;
                oApp:cDir16x16 + "sRed.bmp" }

This command is ok. no problem.

I convert bmp files to resource.

Code: Select all | Expand

Bmp_sBlue       BITMAP "Res\\sblue.bmp"
Bmp_sGreen  BITMAP "Res\\sgreen.bmp"
Bmp_sRed        BITMAP "Res\\sred.bmp"
Bmp_sRosso  BITMAP "Res\\srosso.bmp"
Bmp_sWhite  BITMAP "Res\\swhite.bmp"
Bmp_sYellow BITMAP "Res\\syellow.bmp"


Code: Select all | Expand

    @ 198,55 COMBOBOX oRenkKodu Var xBG_Renk Of oDlg Pixel;
                        ITEMS {"   Beyaz", "   Mavi", "   Rosso", "   Sarı", "   Yeşil", "   Kırmızı"} SIZE 100,12 ;
                        BITMAPS { "Bmp_sWhite", "Bmp_sBlue", "Bmp_sRosso", "Bmp_sYellow", "Bmp_sGreen", "Bmp_sRed"  }


This command does not run properly. Every line is white.

Is it normal?
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
User avatar
nageswaragunupudi
Posts: 10729
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Been thanked: 10 times
Contact:

Re: Help about Combobox, bitmap, resource

Post by nageswaragunupudi »

Resources also work well.

Please check your rc file for the minimum requirements.
Keep all names in UPPERCASE.
Check the paths of the bitmaps
Regards

G. N. Rao.
Hyderabad, India
Horizon
Posts: 1329
Joined: Fri May 23, 2008 1:33 pm
Has thanked: 6 times
Been thanked: 1 time

Re: Help about Combobox, bitmap, resource

Post by Horizon »

Thank you Mr. Rao,

Is there any resulotion restrictions for bitmaps? My bmp is 100x20 pixels.
Regards,

Hakan ONEMLI

Harbour & MSVC 2022 & FWH 23.04
User avatar
nageswaragunupudi
Posts: 10729
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Been thanked: 10 times
Contact:

Re: Help about Combobox, bitmap, resource

Post by nageswaragunupudi »

No
Regards

G. N. Rao.
Hyderabad, India
Post Reply