adding bitmap to button

D

Dan Bloomquist

Monty said:
Is there a way to add a specific bitmap on a button?

There are no buttons in c++, so
Try microsoft.public.vc.mfc (assumes mfc)
Search codeproject.com (assumes mfc or...)
See SetBitmap and/or the override DrawItem (assumes mfc)

Best, Dan.
 
J

Julie

Monty R. Caywood said:
Is there a way to add a specific bitmap on a button?

class Bitmap
{
};

class Button
{
public:
void SetBitmap(const Bitmap & bm)
{
/* ... */
}
};

int main(/* ... */)
{
Bitmap bm;
Button bt;
bt.SetBitmap(bm);
return 0;
}
 
D

Dan Bloomquist

Julie said:
class Bitmap
{
};

class Button
{
public:
void SetBitmap(const Bitmap & bm)
{
/* ... */
}
};

int main(/* ... */)
{
Bitmap bm;
Button bt;
bt.SetBitmap(bm);
return 0;
}

Do ya think if the op where make'n his own button and bitmap classes he
would need to ask the question? :)

And next you'll be going bm.Load( RESOURCE ) and on and on...

Better he look at examples relevant to his OS and development system.

Best, Dan.
 
J

Julie

Dan Bloomquist wrote:
[snip]
Do ya think if the op where make'n his own button and bitmap classes he
would need to ask the question? :)

And next you'll be going bm.Load( RESOURCE ) and on and on...

Better he look at examples relevant to his OS and development system.

Danny boy, it was a *joke*.
 
D

Dan Bloomquist

Julie said:
Dan Bloomquist wrote:
[snip]
Do ya think if the op where make'n his own button and bitmap classes he
would need to ask the question? :)

And next you'll be going bm.Load( RESOURCE ) and on and on...

Better he look at examples relevant to his OS and development system.


Danny boy, it was a *joke*.

Golly Julie,

Put a huge _red_ smiley here:
**
* *
* * * *
* * *
**

Best, Dan.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top