Click here to Skip to main content
15,886,199 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Read char by char in a file after write char by char to another file in vc++. Pin
Richard MacCutchan16-Jul-12 23:32
mveRichard MacCutchan16-Jul-12 23:32 
QuestionC++/CLI - Pin a function pointer Pin
krishter10-Jul-12 23:16
krishter10-Jul-12 23:16 
GeneralRe: C++/CLI - Pin a function pointer Pin
Paul Michalik14-Jul-12 23:51
Paul Michalik14-Jul-12 23:51 
QuestionHow to Make and Use Resource DialogBoxes in VC++ 2008 Pin
ICEFLOWER226-Jun-12 4:07
ICEFLOWER226-Jun-12 4:07 
AnswerRe: How to Make and Use Resource DialogBoxes in VC++ 2008 Pin
Richard MacCutchan26-Jun-12 4:31
mveRichard MacCutchan26-Jun-12 4:31 
GeneralRe: How to Make and Use Resource DialogBoxes in VC++ 2008 Pin
ICEFLOWER226-Jun-12 7:53
ICEFLOWER226-Jun-12 7:53 
GeneralRe: How to Make and Use Resource DialogBoxes in VC++ 2008 Pin
Richard MacCutchan26-Jun-12 8:24
mveRichard MacCutchan26-Jun-12 8:24 
QuestionGetting MdiParent Instance From MdiChild - Windows Forms Application Pin
Paramu197312-Jun-12 1:50
Paramu197312-Jun-12 1:50 
Hi, Iam using VC++ 2010. While I want to get the MdiParent-Forms Instance, its giving the error, Really I can't identify my mistake...

My Codes from MdiParent
=======================

C++
#include "For_Student_Detials"
 
private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
For_Student_Detials^ MyStudentDet= For_Student_Detials::GetForm(true,this);
MyStudentDet->MdiParent=this;
MyStudentDet->FormBorderStyle=System::Windows::Forms::FormBorderStyle::None;
MyStudentDet->Dock=DockStyle::Fill;
MyStudentDet->Show();
}

My Codes From MdiChild // CFIS_Main is my Mdi-Container
=========================================================
C++
#any Include Reqd?????
 
public: static For_Student_Details^ For_Student_Details::_instance = nullptr;
public: static For_Student_Details^ For_Student_Details::GetForm(bool^ IsMDIChild, CFIS_Main^ MyInstFrm) {
if (_instance == nullptr)
    _instance = gcnew For_Student_Details();
 
if (_instance->IsDisposed)
    _instance = gcnew For_Student_Details();
		
if (IsMDIChild)
    _instance->MdiParent = MyInstFrm;
		
return _instance;
} 

From the above code I can't identify my mistake, Does anybody can point me?
Thanks For Helps Thumbs Up | :thumbsup:
AnswerRe: Getting MdiParent Instance From MdiChild - Windows Forms Application Pin
Richard MacCutchan12-Jun-12 2:15
mveRichard MacCutchan12-Jun-12 2:15 
GeneralRe: Getting MdiParent Instance From MdiChild - Windows Forms Application Pin
Paramu197312-Jun-12 2:30
Paramu197312-Jun-12 2:30 
GeneralRe: Getting MdiParent Instance From MdiChild - Windows Forms Application Pin
Richard MacCutchan12-Jun-12 3:03
mveRichard MacCutchan12-Jun-12 3:03 
GeneralRe: Getting MdiParent Instance From MdiChild - Windows Forms Application Pin
Paramu197315-Jun-12 1:30
Paramu197315-Jun-12 1:30 
QuestionHow to convert from 'WCHAR' to 'System::String ^' Managed C++ Pin
ptr_Electron7-Jun-12 20:08
ptr_Electron7-Jun-12 20:08 
AnswerRe: How to convert from 'WCHAR' to 'System::String ^' Managed C++ Pin
Richard MacCutchan7-Jun-12 21:58
mveRichard MacCutchan7-Jun-12 21:58 
Questionint x = (Int32) thisisObjectType is boxing, if the type is already checked ? Pin
ptr_Electron7-Jun-12 18:15
ptr_Electron7-Jun-12 18:15 
AnswerRe: int x = (Int32) thisisObjectType is boxing, if the type is already checked ? Pin
Richard MacCutchan8-Jun-12 0:34
mveRichard MacCutchan8-Jun-12 0:34 
QuestionVS2010 Error()- Method or Property 'VCFilter::get_Url Behavior' deprecated and nolonger implemented Pin
Paramu19736-Jun-12 23:57
Paramu19736-Jun-12 23:57 
QuestionC++ CX and WPF Pin
Super Lloyd6-Jun-12 15:04
Super Lloyd6-Jun-12 15:04 
QuestionStrong vs static typing Pin
elelont25-Jun-12 9:37
elelont25-Jun-12 9:37 
AnswerRe: Strong vs static typing Pin
Paul Conrad5-Jun-12 10:37
professionalPaul Conrad5-Jun-12 10:37 
GeneralRe: Strong vs static typing Pin
Luc Pattyn5-Jun-12 11:13
sitebuilderLuc Pattyn5-Jun-12 11:13 
GeneralRe: Strong vs static typing Pin
Paul Conrad5-Jun-12 12:10
professionalPaul Conrad5-Jun-12 12:10 
AnswerRe: Strong vs static typing Pin
Richard MacCutchan5-Jun-12 21:08
mveRichard MacCutchan5-Jun-12 21:08 
GeneralRe: Strong vs static typing Pin
elelont26-Jun-12 5:09
elelont26-Jun-12 5:09 
GeneralRe: Strong vs static typing Pin
Richard MacCutchan6-Jun-12 5:21
mveRichard MacCutchan6-Jun-12 5:21 

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.