Click here to Skip to main content
15,891,253 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Accesing ICorRuntimeHost. Pin
Stephane Rodriguez.4-Oct-03 10:53
Stephane Rodriguez.4-Oct-03 10:53 
GeneralGDI+ and memory leaks Pin
mikelb2-Oct-03 8:03
mikelb2-Oct-03 8:03 
GeneralRe: GDI+ and memory leaks Pin
igor19603-Oct-03 13:38
igor19603-Oct-03 13:38 
GeneralRe: GDI+ and memory leaks Pin
Stephane Rodriguez.4-Oct-03 2:41
Stephane Rodriguez.4-Oct-03 2:41 
GeneralOpening a form inside another Pin
Ricky Helgesson2-Oct-03 4:11
Ricky Helgesson2-Oct-03 4:11 
GeneralRe: Opening a form inside another Pin
mikelb2-Oct-03 8:04
mikelb2-Oct-03 8:04 
GeneralRe: Opening a form inside another Pin
Ricky Helgesson2-Oct-03 21:40
Ricky Helgesson2-Oct-03 21:40 
GeneralRe: Opening a form inside another Pin
mikelb3-Oct-03 4:49
mikelb3-Oct-03 4:49 
What I did was this, and it works for me:

In the constructor code for the form add:
this.TopLevel = false;

In your main form use this:

frmAddNew add = new frmAddNew( );
add.Parent = panelWorkArea;
panelWorkArea.Controls.Add( add );
add.Visible = true;

Let me know if that works for you.
GeneralRe: Opening a form inside another Pin
Ricky Helgesson7-Oct-03 6:52
Ricky Helgesson7-Oct-03 6:52 
GeneralRe: Opening a form inside another Pin
mikelb7-Oct-03 7:19
mikelb7-Oct-03 7:19 
GeneralRe: Opening a form inside another Pin
Jasper4C#2-Oct-03 11:56
Jasper4C#2-Oct-03 11:56 
GeneralRe: Opening a form inside another Pin
MtnBiknGuy3-Oct-03 5:02
MtnBiknGuy3-Oct-03 5:02 
GeneralProblem with web deployment using cab file Pin
Srikar Y30-Sep-03 0:39
Srikar Y30-Sep-03 0:39 
QuestionCan .NET work as Visual Studio6.0? Pin
joc6129-Sep-03 12:58
joc6129-Sep-03 12:58 
AnswerRe: Can .NET work as Visual Studio6.0? Pin
mikelb2-Oct-03 8:07
mikelb2-Oct-03 8:07 
GeneralGeting/seting the properties of a file Pin
Mattias Olgerfelt29-Sep-03 3:35
Mattias Olgerfelt29-Sep-03 3:35 
GeneralRe: Geting/seting the properties of a file Pin
Jim Taylor7-Oct-03 7:04
Jim Taylor7-Oct-03 7:04 
GeneralRe: Geting/seting the properties of a file Pin
Mattias Olgerfelt7-Oct-03 7:48
Mattias Olgerfelt7-Oct-03 7:48 
Generalshortcut for button in .net cf Pin
tignatov29-Sep-03 0:31
tignatov29-Sep-03 0:31 
Questiona Diff component? Pin
eidylon26-Sep-03 6:24
eidylon26-Sep-03 6:24 
AnswerRe: a Diff component? Pin
Blake Coverett27-Sep-03 2:32
Blake Coverett27-Sep-03 2:32 
GeneralShortCut Pin
ami-uhle26-Sep-03 5:52
ami-uhle26-Sep-03 5:52 
General.Net Remoting with Visual C++ .NET Pin
Moisés Lima Dutra25-Sep-03 6:54
Moisés Lima Dutra25-Sep-03 6:54 
GeneralSending GET to a web service Pin
Ed K24-Sep-03 9:35
Ed K24-Sep-03 9:35 
GeneralAbout ICodecompiler Interface,CompileAssemblyFromSource(,) method Pin
jian-ping23-Sep-03 17:03
jian-ping23-Sep-03 17:03 

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.