Click here to Skip to main content
15,921,793 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralProblem with loading DLL on a computer that doesn't have VC++ installed... Pin
Rickard Andersson2031-Dec-01 14:21
Rickard Andersson2031-Dec-01 14:21 
GeneralRe: Problem with loading DLL on a computer that doesn't have VC++ installed... Pin
Roger Wright (new)31-Dec-01 16:16
Roger Wright (new)31-Dec-01 16:16 
GeneralRe: Problem with loading DLL on a computer that doesn't have VC++ installed... Pin
Not Active31-Dec-01 23:01
mentorNot Active31-Dec-01 23:01 
GeneralRe: Problem with loading DLL on a computer that doesn't have VC++ installed... Pin
Rickard Andersson201-Jan-02 1:57
Rickard Andersson201-Jan-02 1:57 
GeneralRe: Problem with loading DLL on a computer that doesn't have VC++ installed... Pin
The_Server1-Jan-02 2:47
The_Server1-Jan-02 2:47 
GeneralRe: Problem with loading DLL on a computer that doesn't have VC++ installed... Pin
Rickard Andersson201-Jan-02 4:53
Rickard Andersson201-Jan-02 4:53 
Generalwin32 API with c# Pin
kasturirawat31-Dec-01 13:55
kasturirawat31-Dec-01 13:55 
GeneralAuto URL detect Pin
Nnamdi Onyeyiri31-Dec-01 7:40
Nnamdi Onyeyiri31-Dec-01 7:40 
GeneralCompiling DLL in Release Mode Pin
Nnamdi Onyeyiri31-Dec-01 7:37
Nnamdi Onyeyiri31-Dec-01 7:37 
GeneralStatic Binding & Dynamic Binding :: C++ Pin
valikac31-Dec-01 7:15
valikac31-Dec-01 7:15 
GeneralRe: Static Binding & Dynamic Binding :: C++ Pin
Christian Graus31-Dec-01 10:42
protectorChristian Graus31-Dec-01 10:42 
GeneralRe: Static Binding & Dynamic Binding :: C++ Pin
valikac31-Dec-01 11:56
valikac31-Dec-01 11:56 
GeneralRe: Static Binding & Dynamic Binding :: C++ Pin
2-Jan-02 7:56
suss2-Jan-02 7:56 
GeneralRe: Static Binding & Dynamic Binding :: C++ Pin
valikac2-Jan-02 14:22
valikac2-Jan-02 14:22 
GeneralGraph Pin
Sonu Kapoor31-Dec-01 5:09
Sonu Kapoor31-Dec-01 5:09 
GeneralRe: Graph Pin
Ravi Bhavnani31-Dec-01 5:13
professionalRavi Bhavnani31-Dec-01 5:13 
GeneralCHtmlView Pin
31-Dec-01 4:36
suss31-Dec-01 4:36 
GeneralRe: CHtmlView Pin
Philip Patrick1-Jan-02 2:49
professionalPhilip Patrick1-Jan-02 2:49 
Generalcall a function from more then 1 project Pin
Aviv Halperin31-Dec-01 4:23
Aviv Halperin31-Dec-01 4:23 
GeneralRe: call a function from more then 1 project Pin
Chris Losinger31-Dec-01 4:32
professionalChris Losinger31-Dec-01 4:32 
GeneralLoading function from an exe... Pin
Rickard Andersson2031-Dec-01 3:08
Rickard Andersson2031-Dec-01 3:08 
GeneralRe: Loading function from an exe... Pin
BlackSmith31-Dec-01 5:33
BlackSmith31-Dec-01 5:33 
GeneralMFC Extention DLL - Exporting classes..... Pin
BlackSmith31-Dec-01 2:49
BlackSmith31-Dec-01 2:49 
GeneralRe: MFC Extention DLL - Exporting classes..... Pin
Nnamdi Onyeyiri31-Dec-01 7:18
Nnamdi Onyeyiri31-Dec-01 7:18 
Questionmenu from resource redrawing? Pin
Kuniva31-Dec-01 2:40
Kuniva31-Dec-01 2:40 
I have an MFC dialog application and in its properties i assign it a menu. I thought "wow this is easy, i just make a menu and stick it on the dialog, i dont even have to write any code for it". But then i wanted to disable an item and found a problem. this is what i have:

void CMyDlg::OnUpdateMyItem(CCmdUI* pCmdUI)
{
pCmdUI->Enable(FALSE);
}

This disables the menuitem BUT! it doesn't show it disabled. It's like it does it in the background without redrawing the menu. Can anyone tell me how to work with the pointer and all so its updated correctly??
Thanks

(PS: i tried CMyDlg::DrawMenuBar(); , no effect)

Kuniva

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.