Help about Combobox, bitmap, resource

Post Reply
Horizon
Posts: 997
Joined: Fri May 23, 2008 1:33 pm

Help about Combobox, bitmap, resource

Post by Horizon »

Hi,

I have command like that.

Code: Select all

    @ 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

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

    @ 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 & VS 2019 & FWH 20.12
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
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: 997
Joined: Fri May 23, 2008 1:33 pm

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 & VS 2019 & FWH 20.12
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Help about Combobox, bitmap, resource

Post by nageswaragunupudi »

No
Regards

G. N. Rao.
Hyderabad, India
Post Reply