Click here to Skip to main content
       

C / C++ / MFC

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
QuestionPattern Abstract FactorymemberPahanuch14 Oct '12 - 3:45 
AnswerRe: Pattern Abstract FactorymemberRichard Andrew x6414 Oct '12 - 6:53 
QuestionHow to enable re-sizing window without using WS_THICKKFRAMEmemberAdarapu Harikrishna12 Oct '12 - 11:18 
AnswerRe: How to enable re-sizing window without using WS_THICKKFRAMEmemberRichard Andrew x6412 Oct '12 - 12:25 
GeneralRe: How to enable re-sizing window without using WS_THICKKFRAMEmemberAdarapu Harikrishna14 Oct '12 - 15:51 
SuggestionRe: How to enable re-sizing window without using WS_THICKKFRAMEmemberDavidCrow13 Oct '12 - 9:11 
QuestionProblem on modeless dialog on ExcelmemberMember 311342211 Oct '12 - 7:23 
Hi Team,
 
I have create modeless dialog, which contain Edit Box, and put it in Excel.

The problem is every time I enter a text to my edit, the text disappear in Edit Box instead it show in a active cell in Excel.
 
Does someone has any suggestion?
 
Below is a code snipped
<pre lang="c++">BOOL CALLBACK ToolDlgProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam)
{
switch(Message)
{
case WM_COMMAND:
break;
case WM_GETDLGCODE:
return TRUE;
case WM_SETFOCUS:
return TRUE;
case WM_KILLFOCUS:
return TRUE;
default:
return FALSE;
}
return TRUE;
}
 
void CWPFInDialog::CreateMyDialog(HWND a_hwnd)
{
 
//a_hwnd is an excel handle get from Excel::_Application::get_Hwnd() funcrtion

m_dialogHwnd = CreateDialog(g_hinstDLL, MAKEINTRESOURCE(IDD_DIALOGHOST), a_hwnd, ToolDlgProc);
 
if(m_dialogHwnd == NULL)
 
{
ShowWindow(m_dialogHwnd, SW_SHOW);
}
}
 
Thanks,
 
PS
AnswerRe: Problem on modeless dialog on ExcelmvpRichard MacCutchan11 Oct '12 - 11:26 
GeneralRe: Problem on modeless dialog on ExcelmemberMember 311342211 Oct '12 - 17:54 
GeneralRe: Problem on modeless dialog on ExcelmvpRichard MacCutchan11 Oct '12 - 21:03 
GeneralRe: Problem on modeless dialog on ExcelmemberMember 311342211 Oct '12 - 21:20 
GeneralRe: Problem on modeless dialog on ExcelmvpRichard MacCutchan11 Oct '12 - 22:17 
GeneralRe: Problem on modeless dialog on ExcelmemberDavidCrow12 Oct '12 - 10:26 
QuestionFatal Error C1902memberpix_programmer10 Oct '12 - 22:42 
AnswerRe: Fatal Error C1902memberJochen Arndt10 Oct '12 - 22:51 
GeneralRe: Fatal Error C1902memberpix_programmer10 Oct '12 - 22:59 
GeneralRe: Fatal Error C1902memberJochen Arndt10 Oct '12 - 23:05 
GeneralRe: Fatal Error C1902memberpix_programmer10 Oct '12 - 23:18 
GeneralRe: Fatal Error C1902memberJochen Arndt10 Oct '12 - 23:27 
GeneralRe: Fatal Error C1902memberpix_programmer10 Oct '12 - 23:43 
GeneralRe: Fatal Error C1902memberJochen Arndt10 Oct '12 - 23:52 
QuestionCRichEditCtrl halt any visual updates for a sec !!membersdancer7510 Oct '12 - 4:59 
AnswerRe: CRichEditCtrl halt any visual updates for a sec !!memberJochen Arndt10 Oct '12 - 5:39 
AnswerRe: CRichEditCtrl halt any visual updates for a sec !!memberAndrew Cherednik10 Oct '12 - 11:27 
GeneralRe: CRichEditCtrl halt any visual updates for a sec !!membersdancer7510 Oct '12 - 21:38 

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


Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 20 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid