Click here to Skip to main content
15,890,512 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionReading Media File in 100 thread instances Pin
Andy Rama5-Aug-06 0:47
Andy Rama5-Aug-06 0:47 
QuestionCOPY AND PASTE CODE in vc++ Pin
ningthemcha4-Aug-06 23:57
ningthemcha4-Aug-06 23:57 
AnswerRe: COPY AND PASTE CODE in vc++ Pin
Hans Dietrich5-Aug-06 17:37
mentorHans Dietrich5-Aug-06 17:37 
QuestionHow can I grayed out i.e. Enable or dissable the controls from Tool bar Pin
Sameer_Thakur4-Aug-06 23:26
Sameer_Thakur4-Aug-06 23:26 
AnswerRe: How can I grayed out i.e. Enable or dissable the controls from Tool bar Pin
Amar Sutar4-Aug-06 23:40
Amar Sutar4-Aug-06 23:40 
AnswerRe: How can I grayed out i.e. Enable or dissable the controls from Tool bar Pin
Hamid_RT5-Aug-06 2:40
Hamid_RT5-Aug-06 2:40 
Questioncommunication b/w modeless dlg and its parent Pin
GANsJob4-Aug-06 21:46
GANsJob4-Aug-06 21:46 
AnswerRe: communication b/w modeless dlg and its parent Pin
_AnsHUMAN_ 4-Aug-06 21:59
_AnsHUMAN_ 4-Aug-06 21:59 
Try passing a pointer of your application to the dialog.
In the dialog you can create a pointer of your parent class and access the variables/member functions of the parent class with the help of that pointer.

You can do this:
in the dialog declare a pointer of view in the header file
CMyParentView *pView;
Now when you are creating the dialog
CMydialog* pMyDlg=new CMyDialog();
pMyDlg->pView=this;
pMyDlg->DoModal(); // Or in whatever manner you are creating the dialog.

In the dialog you can then access the member variables of the view like
pView->myLinkedList.///////Somecode or function here
Try this.


Somethings seem HARD to do, until we know how to do them.
Wink | ;-) _AnShUmAn_

GeneralRe: communication b/w modeless dlg and its parent Pin
GANsJob5-Aug-06 0:48
GANsJob5-Aug-06 0:48 
QuestionRe: communication b/w modeless dlg and its parent Pin
Hamid_RT5-Aug-06 1:19
Hamid_RT5-Aug-06 1:19 
QuestionRead data from file and separate to keep Pin
Max++4-Aug-06 21:36
Max++4-Aug-06 21:36 
AnswerRe: Read data from file and separate to keep Pin
_AnsHUMAN_ 4-Aug-06 22:00
_AnsHUMAN_ 4-Aug-06 22:00 
AnswerRe: Read data from file and separate to keep Pin
Graham Shanks4-Aug-06 22:00
Graham Shanks4-Aug-06 22:00 
AnswerRe: Read data from file and separate to keep Pin
Hamid_RT5-Aug-06 3:12
Hamid_RT5-Aug-06 3:12 
QuestionRegistry Cleaner Pin
georgekjolly4-Aug-06 21:03
georgekjolly4-Aug-06 21:03 
AnswerRe: Registry Cleaner Pin
Hamid_RT5-Aug-06 1:13
Hamid_RT5-Aug-06 1:13 
QuestionCTreeCtrl Pin
mosali satish4-Aug-06 20:58
mosali satish4-Aug-06 20:58 
AnswerRe: CTreeCtrl Pin
Hamid_RT5-Aug-06 1:13
Hamid_RT5-Aug-06 1:13 
AnswerRe: CTreeCtrl Pin
mails2dhana5-Aug-06 1:21
mails2dhana5-Aug-06 1:21 
AnswerRe: CTreeCtrl Pin
Gary R. Wheeler5-Aug-06 6:10
Gary R. Wheeler5-Aug-06 6:10 
AnswerRe: CTreeCtrl Pin
ThatsAlok6-Aug-06 0:17
ThatsAlok6-Aug-06 0:17 
QuestionI need a rotatable tracker Pin
includeh104-Aug-06 19:41
includeh104-Aug-06 19:41 
AnswerRe: I need a rotatable tracker Pin
Rilhas6-Aug-06 3:21
Rilhas6-Aug-06 3:21 
QuestionCorrectly displaying unicode characters Pin
Waldermort4-Aug-06 18:50
Waldermort4-Aug-06 18:50 
AnswerRe: Correctly displaying unicode characters Pin
Michael Dunn4-Aug-06 19:52
sitebuilderMichael Dunn4-Aug-06 19:52 

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.