Click here to Skip to main content
15,907,392 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: [Win32 C] how save HICON to a icon file? Pin
prasad_som5-Mar-07 22:25
prasad_som5-Mar-07 22:25 
QuestionHow to change "Caption" of Menu Item Dynamcally? Pin
cshivaprasad5-Mar-07 21:39
cshivaprasad5-Mar-07 21:39 
AnswerRe: How to change "Caption" of Menu Item Dynamcally? Pin
prasad_som5-Mar-07 22:07
prasad_som5-Mar-07 22:07 
QuestionDLL Header file content Pin
Programm3r5-Mar-07 21:34
Programm3r5-Mar-07 21:34 
AnswerRe: DLL Header file content Pin
Cedric Moonen5-Mar-07 21:53
Cedric Moonen5-Mar-07 21:53 
GeneralRe: DLL Header file content Pin
Programm3r5-Mar-07 21:58
Programm3r5-Mar-07 21:58 
QuestionMedia Pin
Try5-Mar-07 21:33
Try5-Mar-07 21:33 
AnswerRe: Media Pin
kakan5-Mar-07 21:39
professionalkakan5-Mar-07 21:39 
GeneralRe: Media Pin
Try5-Mar-07 21:43
Try5-Mar-07 21:43 
GeneralRe: Media Pin
kakan5-Mar-07 22:09
professionalkakan5-Mar-07 22:09 
GeneralRe: Media [modified] Pin
Try5-Mar-07 22:39
Try5-Mar-07 22:39 
GeneralRe: Media Pin
kakan5-Mar-07 23:42
professionalkakan5-Mar-07 23:42 
GeneralRe: Media Pin
Try6-Mar-07 1:41
Try6-Mar-07 1:41 
GeneralRe: Media Pin
kakan6-Mar-07 1:47
professionalkakan6-Mar-07 1:47 
QuestionAbout files??? Pin
siddharthsan5-Mar-07 21:29
siddharthsan5-Mar-07 21:29 
QuestionMinimize application to system tray Pin
eli150219795-Mar-07 20:31
eli150219795-Mar-07 20:31 
AnswerRe: Minimize application to system tray Pin
Xing Chen5-Mar-07 21:00
Xing Chen5-Mar-07 21:00 
QuestionCopy folder to pendrive Pin
Vjys5-Mar-07 20:21
Vjys5-Mar-07 20:21 
AnswerRe: Copy folder to pendrive Pin
Rajesh R Subramanian5-Mar-07 21:02
professionalRajesh R Subramanian5-Mar-07 21:02 
AnswerRe: Copy folder to pendrive Pin
kakan5-Mar-07 21:07
professionalkakan5-Mar-07 21:07 
GeneralRe: Copy folder to pendrive Pin
Vjys5-Mar-07 21:42
Vjys5-Mar-07 21:42 
GeneralRe: Copy folder to pendrive Pin
kakan5-Mar-07 21:59
professionalkakan5-Mar-07 21:59 
QuestionRe: Copy folder to pendrive Pin
Rajesh R Subramanian5-Mar-07 21:18
professionalRajesh R Subramanian5-Mar-07 21:18 
QuestionMFC PROJECT Pin
T.RATHA KRISHNAN5-Mar-07 19:58
T.RATHA KRISHNAN5-Mar-07 19:58 
I've a MFC Project devoloped using Gamebryo(NetImmerse)Engine. In this Project,
if I change a file for a parent, the clones not automatically updating. The change takes effect only after we save,close and reopen the file. The code for Reload i.e. changing a file is,

void CPerspectiveDoc::OnReload()
{
interactiveload = TRUE;
ChangedLoadedFile = true;

HTREEITEM selectednode = m_StructureView->GetTreeCtrl().GetSelectedItem();
CInsightNode* propkey = (CInsightNode*)m_StructureView->GetTreeCtrl().GetItemData(selectednode);
AddChildSG(propkey,(NiNode *)propkey->GetViewHandle());
}

AddChildSG is defined as,
unsigned int CPerspectiveDoc::AddChildSG(CInsightNode *Insight,NiNode *ParentNode)
{
NiNode *save;
unsigned int retval;

save = m_CurrentNode;
m_CurrentNode = ParentNode;
// get translate and rotate from CInsightNode
placetranslate = Insight->GetPosTrans();
placematrix = Insight->GetPosRotate();
retval = InteractiveAddNodeandSelect(Insight);
placetranslate.x = 0;
placetranslate.y = 0;
placetranslate.z = 0;
placematrix.MakeIdentity();
m_CurrentNode = save;
return retval;
}
QuestionProblem Regarding Updation of Exe and the message of the Taskmanager Pin
James_Programmer5-Mar-07 19:55
James_Programmer5-Mar-07 19:55 

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.