Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Need to launch several MDI child forms from main form.

Need to preview text and edit results from each child form in mainform before writing text to disk.

 

Need coding ideas.

 

thanks

  • *Experts*
Posted

Are you saying that you want to send some text back to the parent so you can see what it is? You could make a method ni your parent form that could accept a string where you check what the text is and if it is waht you want write. And to use that method from your child you would use the MDIParent property:

Dim parentform As ParentFormType = Me.MDIParent 
parentform.CheckThisString("some text")

Or other way:

DirectCast(Me.MDIParent, ParentFormType).CheckThisString("some text")

If this is not what you wanted just say :)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...