Inheriting information from another form

duelchamp1

Member
Joined
Aug 9, 2006
Messages
13
Programming Experience
Beginner
Hey

Basicly I am making a story writing reasorce for english students. where they type in so information into textboxs and then click go after which a new form opens with a basic storyline in it. This story line has gaps in it which I want to fill with the text they entered into the textboxes does anyone know how to do this.

Thanks

Duelchamp1:)
 
hey thanks for your help with that got a new problem though I got that other program to work fine thanks to the code on that site. But now I am trying to make a program where the user can select from one of three radio buttons and then click ok after which a new form with a label box on it will open. what I want to happen is for the text in the label box to be based on what radio box was selected. Here is what I got so far:

If f1.rad1.Checked = True Then
Me.lbl1.Text = "correct"
End If
 
Hey

I understand that the principals are the same but it does not work is it something to do with the if statement or something like that because it will work fine when I tell it to get text from somewhere for example:

Me.lblStory.Text = Me.lblStory.Text.Replace("8", frmText.txt8.Text)

Any ideas why?

Thanks
 
Back
Top