Click here to Skip to main content
15,906,645 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionNeed a solution in adding activeX controls in MFC dialog.... Pin
Khathar4-May-08 19:37
Khathar4-May-08 19:37 
AnswerRe: Need a solution in adding activeX controls in MFC dialog.... Pin
Hamid_RT4-May-08 19:43
Hamid_RT4-May-08 19:43 
AnswerRe: Need a solution in adding activeX controls in MFC dialog.... Pin
Rajkumar R4-May-08 20:57
Rajkumar R4-May-08 20:57 
Questioncreating a status bar in VC++,MFC Pin
Mohanraj D4-May-08 18:47
Mohanraj D4-May-08 18:47 
AnswerRe: creating a status bar in VC++,MFC Pin
Hamid_RT4-May-08 19:07
Hamid_RT4-May-08 19:07 
GeneralRe: creating a status bar in VC++,MFC Pin
Mohanraj D4-May-08 19:27
Mohanraj D4-May-08 19:27 
GeneralRe: creating a status bar in VC++,MFC Pin
Nitheesh George4-May-08 19:32
Nitheesh George4-May-08 19:32 
GeneralRe: creating a status bar in VC++,MFC Pin
Mohanraj D4-May-08 20:01
Mohanraj D4-May-08 20:01 
I need to add the status bar in this dialog,but i don't have a onInitDialog(),so where should i add the code????????


// autoscan dialog

IMPLEMENT_DYNAMIC(autoscan, CDialog)

autoscan::autoscan(CWnd* pParent /*=NULL*/)
	: CDialog(autoscan::IDD, pParent)
{

}

autoscan::~autoscan()
{
}

void autoscan::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
}


BEGIN_MESSAGE_MAP(autoscan, CDialog)
	ON_BN_CLICKED(IDOK, &autoscan::OnBnClickedOk)
	ON_LBN_SELCHANGE(IDC_LIST2, &autoscan::OnLbnSelchangeList2)
END_MESSAGE_MAP()


// autoscan message handlers

void autoscan::OnBnClickedOk()
{
	// TODO: Add your control notification handler code here
	OnOK();
}

void autoscan::OnLbnSelchangeList2()
{
	// TODO: Add your control notification handler code here
}


RAJA

GeneralRe: creating a status bar in VC++,MFC Pin
Hamid_RT4-May-08 20:33
Hamid_RT4-May-08 20:33 
GeneralRe: creating a status bar in VC++,MFC Pin
Rajkumar R4-May-08 21:31
Rajkumar R4-May-08 21:31 
QuestionRe: creating a status bar in VC++,MFC Pin
David Crow5-May-08 3:31
David Crow5-May-08 3:31 
QuestionHow to send message to a child window Pin
Nitheesh George4-May-08 18:20
Nitheesh George4-May-08 18:20 
AnswerRe: How to send message to a child window Pin
Hamid_RT4-May-08 19:08
Hamid_RT4-May-08 19:08 
GeneralRe: How to send message to a child window Pin
Nitheesh George4-May-08 19:11
Nitheesh George4-May-08 19:11 
AnswerRe: How to send message to a child window Pin
ThatsAlok4-May-08 23:53
ThatsAlok4-May-08 23:53 
QuestionNot able to write .doc file in Win32 using FILE pointer. Pin
vijay_k4-May-08 18:18
vijay_k4-May-08 18:18 
QuestionRe: Not able to write .doc file in Win32 using FILE pointer. Pin
Rajkumar R4-May-08 21:59
Rajkumar R4-May-08 21:59 
AnswerRe: Not able to write .doc file in Win32 using FILE pointer. Pin
CPallini4-May-08 21:59
mveCPallini4-May-08 21:59 
GeneralRe: Not able to write .doc file in Win32 using FILE pointer. Pin
vijay_k4-May-08 22:40
vijay_k4-May-08 22:40 
QuestionRe: Not able to write .doc file in Win32 using FILE pointer. Pin
CPallini4-May-08 22:59
mveCPallini4-May-08 22:59 
AnswerRe: Not able to write .doc file in Win32 using FILE pointer. Pin
vijay_k4-May-08 23:22
vijay_k4-May-08 23:22 
GeneralRe: Not able to write .doc file in Win32 using FILE pointer. Pin
CPallini4-May-08 23:29
mveCPallini4-May-08 23:29 
GeneralRe: Not able to write .doc file in Win32 using FILE pointer. Pin
vijay_k4-May-08 23:36
vijay_k4-May-08 23:36 
GeneralRe: Not able to write .doc file in Win32 using FILE pointer. Pin
CPallini4-May-08 23:54
mveCPallini4-May-08 23:54 
Questioncreating progress bar inMFC,VC++ [modified] Pin
Mohanraj D4-May-08 17:33
Mohanraj D4-May-08 17:33 

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.