Click here to Skip to main content
15,884,629 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: display a image on button Pin
Hamid_RT29-Jun-06 0:35
Hamid_RT29-Jun-06 0:35 
GeneralRe: display a image on button Pin
ovidiucucu29-Jun-06 0:58
ovidiucucu29-Jun-06 0:58 
GeneralRe: display a image on button Pin
Hamid_RT29-Jun-06 1:29
Hamid_RT29-Jun-06 1:29 
GeneralRe: display a image on button Pin
Hamid_RT29-Jun-06 1:43
Hamid_RT29-Jun-06 1:43 
GeneralRe: display a image on button Pin
ovidiucucu29-Jun-06 2:04
ovidiucucu29-Jun-06 2:04 
GeneralRe: display a image on button Pin
Hamid_RT29-Jun-06 2:32
Hamid_RT29-Jun-06 2:32 
AnswerRe: display a image on button Pin
ovidiucucu29-Jun-06 0:55
ovidiucucu29-Jun-06 0:55 
GeneralRe: display a image on button Pin
Amit Agarrwal29-Jun-06 1:29
Amit Agarrwal29-Jun-06 1:29 
hello

i did like this

BOOL CMyDialog::OnInitDialog()
{
CDialog::OnInitDialog();
LoadButtonBitmapImage(IDC_BUTTON1, _T("C:\Documents and Settings\swaraj\Desktop\sipXezPhone\res\1_down.bmp"));
}


and

void CNewProjectDlg::LoadButtonBitmapImage(UINT nButtonResID,LPCTSTR pszBitmapFile)
{

CButton* pButton = (CButton*)GetDlgItem(IDC_BUTTON1); // be sure the button has BS_BITMAP style

pButton->ModifyStyle(BS_ICON, BS_BITMAP);
// load bitmap from file

HBITMAP hBitmap = (HBITMAP)::LoadImage(NULL,pszBitmapFile,IMAGE_BITMAP, 0, 0,LR_DEFAULTCOLOR|LR_LOADFROMFILE);
// set the button bitmap

pButton->SetBitmap(hBitmap);
}


but it not showing me anything..
one thing more i'm getting where from the value will pass into

UINT nButtonResID,LPCTSTR pszBitmapFile

plz tell me the solution.....where i'm amking mistake

byee
GeneralRe: display a image on button [modified] Pin
Hamid_RT29-Jun-06 1:45
Hamid_RT29-Jun-06 1:45 
GeneralRe: display a image on button Pin
Amit Agarrwal29-Jun-06 1:54
Amit Agarrwal29-Jun-06 1:54 
GeneralRe: display a image on button Pin
Hamid_RT29-Jun-06 2:00
Hamid_RT29-Jun-06 2:00 
GeneralRe: display a image on button Pin
ovidiucucu29-Jun-06 2:09
ovidiucucu29-Jun-06 2:09 
GeneralRe: display a image on button Pin
Amit Agarrwal29-Jun-06 2:11
Amit Agarrwal29-Jun-06 2:11 
GeneralRe: display a image on button Pin
ovidiucucu29-Jun-06 2:11
ovidiucucu29-Jun-06 2:11 
GeneralRe: display a image on button Pin
Amit Agarrwal29-Jun-06 3:02
Amit Agarrwal29-Jun-06 3:02 
GeneralRe: display a image on button Pin
Amit Agarrwal29-Jun-06 20:44
Amit Agarrwal29-Jun-06 20:44 
GeneralRe: display a image on button Pin
Amit Agarrwal29-Jun-06 21:11
Amit Agarrwal29-Jun-06 21:11 
AnswerRe: display a image on button Pin
David Crow29-Jun-06 2:57
David Crow29-Jun-06 2:57 
QuestionActiveX issue Pin
Nader Elshehabi28-Jun-06 23:41
Nader Elshehabi28-Jun-06 23:41 
AnswerRe: ActiveX issue Pin
bob1697229-Jun-06 1:59
bob1697229-Jun-06 1:59 
GeneralRe: ActiveX issue Pin
Nader Elshehabi29-Jun-06 3:24
Nader Elshehabi29-Jun-06 3:24 
GeneralRe: ActiveX issue Pin
bob1697229-Jun-06 4:32
bob1697229-Jun-06 4:32 
GeneralRe: ActiveX issue Pin
Nader Elshehabi29-Jun-06 5:13
Nader Elshehabi29-Jun-06 5:13 
Questiontwo calsses Pin
ashish dogra28-Jun-06 23:28
ashish dogra28-Jun-06 23:28 
AnswerRe: two calsses Pin
Cedric Moonen28-Jun-06 23:32
Cedric Moonen28-Jun-06 23:32 

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.