Click here to Skip to main content
16,010,351 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralChanging Icon displayed by Windows Explorer for MFC program Pin
Harold Bamford1-Nov-02 7:26
Harold Bamford1-Nov-02 7:26 
GeneralRe: Changing Icon displayed by Windows Explorer for MFC program Pin
Rohit  Sinha1-Nov-02 9:29
Rohit  Sinha1-Nov-02 9:29 
GeneralRe: Changing Icon displayed by Windows Explorer for MFC program Pin
Harold Bamford1-Nov-02 9:47
Harold Bamford1-Nov-02 9:47 
GeneralRe: Changing Icon displayed by Windows Explorer for MFC program Pin
Gary R. Wheeler2-Nov-02 3:14
Gary R. Wheeler2-Nov-02 3:14 
GeneralRe: Changing Icon displayed by Windows Explorer for MFC program Pin
Harold Bamford12-Nov-02 5:57
Harold Bamford12-Nov-02 5:57 
GeneralProcessing TTN_NEEDTEXT Pin
Aaron Schaefer1-Nov-02 5:10
Aaron Schaefer1-Nov-02 5:10 
GeneralRe: Processing TTN_NEEDTEXT Pin
Roger Allen1-Nov-02 5:43
Roger Allen1-Nov-02 5:43 
GeneralRe: Processing TTN_NEEDTEXT Pin
Aaron Schaefer1-Nov-02 5:56
Aaron Schaefer1-Nov-02 5:56 
SS_NOTIFY? What's that? I can't find that style in MSDN.

What I've got is the MFC wrapper class for a home grown control. I am creating it like this, in a member function of my CFormView derived class:

CHEditDouble* CGraphView::CreateHEdit(const RECT& rc, const UINT& nID)
{
DWORD dwStyle = WS_VISIBLE|WS_CHILDWINDOW|WS_CLIPCHILDREN|WS_TABSTOP|ES_LEFT|ES_AUTOHSCROLL;
DWORD dwExStyle = WS_EX_LEFT|WS_EX_LTRREADING|WS_EX_RIGHTSCROLLBAR|WS_EX_NOPARENTNOTIFY|WS_EX_CLIENTEDGE;

CHEditDouble* pHEditDouble = new CHEditDouble();
ASSERT(pHEditDouble != NULL);
(void)pHEditDouble->Create("Edit", dwStyle, rc, this, nID);

return pHEditDouble;
}


I'm not sure how to see what the system does with this same control when it creates them from a dialog ersource, something must be different.

GeneralRe: Processing TTN_NEEDTEXT Pin
Roger Allen1-Nov-02 6:05
Roger Allen1-Nov-02 6:05 
GeneralRe: Processing TTN_NEEDTEXT Pin
Aaron Schaefer1-Nov-02 6:54
Aaron Schaefer1-Nov-02 6:54 
GeneralRe: Processing TTN_NEEDTEXT Pin
Roger Allen1-Nov-02 8:38
Roger Allen1-Nov-02 8:38 
GeneralRe: Processing TTN_NEEDTEXT Pin
Aaron Schaefer1-Nov-02 9:07
Aaron Schaefer1-Nov-02 9:07 
GeneralRe: Processing TTN_NEEDTEXT Pin
Aaron Schaefer1-Nov-02 9:57
Aaron Schaefer1-Nov-02 9:57 
GeneralShellExecuteEx() Pin
ov1-Nov-02 4:52
ov1-Nov-02 4:52 
GeneralRe: ShellExecuteEx() Pin
dazinith1-Nov-02 5:26
dazinith1-Nov-02 5:26 
GeneralRe: ShellExecuteEx() Pin
ov1-Nov-02 10:07
ov1-Nov-02 10:07 
GeneralRe: ShellExecuteEx() Pin
Stephane Rodriguez.1-Nov-02 20:37
Stephane Rodriguez.1-Nov-02 20:37 
GeneralAdd a icon to the status bar of a SDI app. Pin
Anonymous1-Nov-02 4:50
Anonymous1-Nov-02 4:50 
GeneralRe: Add a icon to the status bar of a SDI app. Pin
Anonymous1-Nov-02 5:09
Anonymous1-Nov-02 5:09 
GeneralPreferred Audio Devices Pin
AuggieDog1-Nov-02 4:26
AuggieDog1-Nov-02 4:26 
GeneralAnimation control Pin
Brigg Thorp1-Nov-02 3:47
Brigg Thorp1-Nov-02 3:47 
QuestionHow to change the color of my dialogs? Pin
Daniel Strigl1-Nov-02 3:37
Daniel Strigl1-Nov-02 3:37 
Questionshared files in LAN ? Pin
vietdung1-Nov-02 2:56
vietdung1-Nov-02 2:56 
AnswerRe: shared files in LAN ? Pin
includeh101-Nov-02 3:34
includeh101-Nov-02 3:34 
GeneralRe: shared files in LAN ? Pin
vietdung1-Nov-02 3:54
vietdung1-Nov-02 3:54 

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.