Click here to Skip to main content
15,902,896 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Problem in property sheet.. Pin
Rajkumar R4-Mar-08 4:59
Rajkumar R4-Mar-08 4:59 
GeneralRe: Problem in property sheet.. Pin
Maxwell Chen4-Mar-08 18:29
Maxwell Chen4-Mar-08 18:29 
GeneralRe: Problem in property sheet.. Pin
Ashish Chauhan4-Mar-08 18:41
Ashish Chauhan4-Mar-08 18:41 
GeneralRe: Problem in property sheet.. Pin
ThatsAlok4-Mar-08 20:40
ThatsAlok4-Mar-08 20:40 
GeneralRe: Problem in property sheet.. Pin
toxcct4-Mar-08 9:58
toxcct4-Mar-08 9:58 
GeneralRe: Problem in property sheet.. Pin
ThatsAlok4-Mar-08 20:40
ThatsAlok4-Mar-08 20:40 
Questionhow to add an image in the form in vc++?? Pin
savitri4-Mar-08 1:15
savitri4-Mar-08 1:15 
GeneralRe: how to add an image in the form in vc++?? Pin
jossion4-Mar-08 1:24
jossion4-Mar-08 1:24 
In visual C project (MFC type) go to insert menu and select bitmap option. Browse for your picture file and add it.Under resources tab in the project navigator check the ID of the bitmap file. Then under OnPaint() function add this piece of code.

CPaintDC dc(this);

CBitmap bmp , *poldBmp;
CDC memdc;

bmp.LoadBitmap(IDB_BITMAP1); // IDB_BITMAP1 is the ID of the bitmap loaded

mdmdc.CreateCOmpatibleDC(&dc);

poldBmp= memdc.SelectObject(&bmp);

dc.BitBlt(10,10,47,47,&memdc,0,0,SRCCOPY);
memdc.SelectObject(poldBmp);

//Do not call CDialog::Onpaint() for painting
GeneralRe: how to add an image in the form in vc++?? Pin
Hamid_RT4-Mar-08 4:21
Hamid_RT4-Mar-08 4:21 
AnswerRe: how to add an image in the form in vc++?? [modified] Pin
Rajkumar R4-Mar-08 1:31
Rajkumar R4-Mar-08 1:31 
GeneralRe: how to add an image in the form in vc++?? Pin
Hamid_RT4-Mar-08 4:20
Hamid_RT4-Mar-08 4:20 
GeneralMessage Pass Pin
john56324-Mar-08 0:42
john56324-Mar-08 0:42 
GeneralRe: Message Pass Pin
CPallini4-Mar-08 0:53
mveCPallini4-Mar-08 0:53 
GeneralRe: Message Pass Pin
Mark Salsbery4-Mar-08 5:29
Mark Salsbery4-Mar-08 5:29 
GeneralRe: Message Pass Pin
ThatsAlok4-Mar-08 20:41
ThatsAlok4-Mar-08 20:41 
Generalerror C2440 Pin
neha.agarwal273-Mar-08 23:58
neha.agarwal273-Mar-08 23:58 
AnswerRe: error C2440 Pin
Rajkumar R4-Mar-08 0:10
Rajkumar R4-Mar-08 0:10 
GeneralRe: error C2440 Pin
CPallini4-Mar-08 0:14
mveCPallini4-Mar-08 0:14 
QuestionRe: error C2440 Pin
David Crow4-Mar-08 3:16
David Crow4-Mar-08 3:16 
Questionmodeless from modal Pin
potyex3-Mar-08 23:58
potyex3-Mar-08 23:58 
GeneralRe: modeless from modal Pin
Rajkumar R4-Mar-08 0:30
Rajkumar R4-Mar-08 0:30 
QuestionRe: modeless from modal Pin
David Crow4-Mar-08 3:13
David Crow4-Mar-08 3:13 
GeneralRe: modeless from modal Pin
potyex4-Mar-08 4:05
potyex4-Mar-08 4:05 
GeneralAlways on Top Pin
duta3-Mar-08 23:33
duta3-Mar-08 23:33 
AnswerRe: Always on Top [modified] Pin
Rajkumar R4-Mar-08 0:46
Rajkumar R4-Mar-08 0:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.