Click here to Skip to main content
15,885,546 members
Home / Discussions / C#
   

C#

 
QuestionAdding .dll file to C#.NET 2005 application ? Pin
Software_Specialist4-Apr-07 0:17
Software_Specialist4-Apr-07 0:17 
AnswerRe: Adding .dll file to C#.NET 2005 application ? Pin
Christian Graus4-Apr-07 0:37
protectorChristian Graus4-Apr-07 0:37 
QuestionDataset Pin
yaminilatha4-Apr-07 0:00
yaminilatha4-Apr-07 0:00 
AnswerRe: Dataset Pin
rah_sin4-Apr-07 0:39
professionalrah_sin4-Apr-07 0:39 
GeneralRe: Dataset Pin
yaminilatha4-Apr-07 1:48
yaminilatha4-Apr-07 1:48 
GeneralRe: Dataset Pin
rah_sin4-Apr-07 2:05
professionalrah_sin4-Apr-07 2:05 
QuestionHow do i access MDI parent data from MDI child? Pin
sinosoidal3-Apr-07 23:54
sinosoidal3-Apr-07 23:54 
AnswerRe: How do i access MDI parent data from MDI child? Pin
originSH4-Apr-07 2:16
originSH4-Apr-07 2:16 
The Child Form has a property called MDIParent, this will return your MDI Parent Form as a Form object.

Because it is returned as a Form object you can only access the properties and methods that the Form class defines.

To access the methods and properties you have created on your MDI Parent Form you need to cast the MDIParent object as the type of your MDI Parent Form.

i.e.

MyMDIParentForm mdiParentForm = (MyMDIParentForm)this.MdiParent;

MyMDIParentForm needs to be replaced with the class name of your MDI Parent Form. This will then give you access to all it's properties and methods.
GeneralRe: How do i access MDI parent data from MDI child? Pin
sinosoidal4-Apr-07 4:00
sinosoidal4-Apr-07 4:00 
Questionhow can get my friend in yahoo messanger? Pin
B.A3-Apr-07 23:28
B.A3-Apr-07 23:28 
AnswerRe: how can get my friend in yahoo messanger? Pin
Christian Graus3-Apr-07 23:47
protectorChristian Graus3-Apr-07 23:47 
AnswerRe: how can get my friend in yahoo messanger? Pin
Sathesh Sakthivel3-Apr-07 23:49
Sathesh Sakthivel3-Apr-07 23:49 
Questionhow to run another exe by ch#.net Pin
abesinghe3-Apr-07 23:20
abesinghe3-Apr-07 23:20 
AnswerRe: how to run another exe by ch#.net Pin
Martin#3-Apr-07 23:23
Martin#3-Apr-07 23:23 
AnswerRe: how to run another exe by ch#.net Pin
coolestCoder3-Apr-07 23:25
coolestCoder3-Apr-07 23:25 
AnswerRe: how to run another exe by ch#.net Pin
Muammar©3-Apr-07 23:50
Muammar©3-Apr-07 23:50 
GeneralRe: how to run another exe by ch#.net Pin
Christian Graus4-Apr-07 0:03
protectorChristian Graus4-Apr-07 0:03 
GeneralRe: how to run another exe by ch#.net Pin
Muammar©4-Apr-07 0:12
Muammar©4-Apr-07 0:12 
GeneralRe: how to run another exe by ch#.net Pin
Martin#4-Apr-07 0:19
Martin#4-Apr-07 0:19 
QuestionGetting a base control from event arg. Pin
Diego F.3-Apr-07 23:14
Diego F.3-Apr-07 23:14 
AnswerRe: Getting a base control from event arg. Pin
joon vh.3-Apr-07 23:24
joon vh.3-Apr-07 23:24 
GeneralRe: Getting a base control from event arg. Pin
Diego F.3-Apr-07 23:57
Diego F.3-Apr-07 23:57 
GeneralRe: Getting a base control from event arg. Pin
joon vh.4-Apr-07 0:04
joon vh.4-Apr-07 0:04 
GeneralRe: Getting a base control from event arg. Pin
Diego F.4-Apr-07 1:02
Diego F.4-Apr-07 1:02 
GeneralRe: Getting a base control from event arg. Pin
Diego F.4-Apr-07 1:05
Diego F.4-Apr-07 1:05 

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.