Von Document an Dialog
-
Hallo!
Wie kann man eine Variable von Documentklasse an Dialogklasse übergeben?
Ich hab' es so versucht
in View Klasse rufe ich mein Dialog aufvoid MyView::Onblabla() { CMyDoc *pDoc=GetDocument(); CMyDlg dlg; if(dlg.DoModal()==IDOK) { dlg.string=pDoc->object->string; } }
kommt aber nichts raus.
Weis jemand wieso?
Voraus danke!
-
dlg.string=pDoc->object->string;
das wird aufgerufen wenn ok gedrückt wird du must das vor die DoModal anweisung packen.
-
Danke WurstNuss!
Ich hab das übersehen!
-
jep