simpleonline
Active member
- Joined
- Sep 13, 2011
- Messages
- 33
- Programming Experience
- Beginner
I have a richtextbox and I am adding text to the rich text box programmically using:
I have a variable called "myvariable"
How can I program my button to type the text above and then insert variable's value in one line?
Example:
Let's that myvariable = "moon"
How can I code my button to say
"The red fox jumps over the moon"
Thanks
VB.NET:
RichTextBox1.AppendText(Environment.NewLine & "The red fox jumps over the"
I have a variable called "myvariable"
How can I program my button to type the text above and then insert variable's value in one line?
Example:
Let's that myvariable = "moon"
How can I code my button to say
"The red fox jumps over the moon"
Thanks
Last edited: