Click here to Skip to main content
15,891,248 members
Home / Discussions / C#
   

C#

 
GeneralRe: Create pie chart in c# Pin
JF201518-Jul-10 19:31
JF201518-Jul-10 19:31 
QuestionC# version of C++ code Pin
gordon305616-Jul-10 10:02
gordon305616-Jul-10 10:02 
GeneralRe: C# version of C++ code [modified] Pin
harold aptroot16-Jul-10 10:31
harold aptroot16-Jul-10 10:31 
AnswerRe: C# version of C++ code Pin
Dave Doknjas16-Jul-10 10:52
Dave Doknjas16-Jul-10 10:52 
QuestionDisable Checkboxes for Treeview Node Pin
Cracked-Down16-Jul-10 4:00
Cracked-Down16-Jul-10 4:00 
AnswerRe: Disable Checkboxes for Treeview Node Pin
Peace ON16-Jul-10 19:02
Peace ON16-Jul-10 19:02 
QuestionName of a derived Form Pin
Flo123416-Jul-10 3:32
Flo123416-Jul-10 3:32 
AnswerRe: Name of a derived Form Pin
Peace ON16-Jul-10 3:47
Peace ON16-Jul-10 3:47 
Nope, you will not get name of derived form in this manner.

Do one thing. Define one form object inside the parent form as follows.
C#
Form f1;


Now, whenever you create child form assign object of child form to this object
which is of parent form, as follow.

C#
//Code for ChildForm which is
derived from ParentForm.
Public ChildForm():base(this)
{
}

//And here is constructor of ParentForm
//from which ChildForm is derived.
public ParentForm(Form _f1)
{
    f1=_f1;
}


That's it. Now, you have whole child form inside the parent form. You
can do anything using f1.


HTH
Jinal Desai - LIVE
Experience is mother of sage....

GeneralRe: Name of a derived Form - OTish Pin
DaveyM6916-Jul-10 12:03
professionalDaveyM6916-Jul-10 12:03 
GeneralRe: Name of a derived Form - OTish Pin
Peace ON16-Jul-10 19:05
Peace ON16-Jul-10 19:05 
AnswerRe: Name of a derived Form Pin
Luc Pattyn16-Jul-10 3:51
sitebuilderLuc Pattyn16-Jul-10 3:51 
AnswerRe: Name of a derived Form Pin
PIEBALDconsult16-Jul-10 5:01
mvePIEBALDconsult16-Jul-10 5:01 
AnswerRe: Name of a derived Form Pin
T M Gray16-Jul-10 6:23
T M Gray16-Jul-10 6:23 
GeneralRe: Name of a derived Form Pin
Flo123422-Jul-10 23:57
Flo123422-Jul-10 23:57 
QuestionChangelog tools for Visual C# Pin
grmihel216-Jul-10 3:18
grmihel216-Jul-10 3:18 
AnswerRe: Changelog tools for Visual C# Pin
Peace ON16-Jul-10 3:25
Peace ON16-Jul-10 3:25 
QuestionMail Extract App Pin
NDBUK16-Jul-10 3:16
NDBUK16-Jul-10 3:16 
AnswerRe: Mail Extract App Pin
Bernhard Hiller16-Jul-10 5:39
Bernhard Hiller16-Jul-10 5:39 
QuestionSkype multiple user auto login Pin
Etienne_12316-Jul-10 2:25
Etienne_12316-Jul-10 2:25 
AnswerRe: Skype multiple user auto login Pin
Peace ON16-Jul-10 2:35
Peace ON16-Jul-10 2:35 
QuestionSingle sign on with access token Pin
Etienne_12316-Jul-10 1:21
Etienne_12316-Jul-10 1:21 
QuestionDatetime Picker and Datagridview Pin
ronaldrahme16-Jul-10 0:36
ronaldrahme16-Jul-10 0:36 
AnswerRe: Datetime Picker and Datagridview Pin
Peace ON16-Jul-10 1:38
Peace ON16-Jul-10 1:38 
QuestionFacebook session key question Pin
Etienne_12316-Jul-10 0:04
Etienne_12316-Jul-10 0:04 
AnswerRe: Facebook session key question Pin
Eddy Vluggen16-Jul-10 0:47
professionalEddy Vluggen16-Jul-10 0:47 

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.