Posted
for example when u click on a script which is in the list it will load it on your textbox.
Thanks For Your Time!
Replied
This is an easy way, create a list box and put something like this.
You can easily change the text of the other box
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if(listBox1.Text == "script name")
{
richTextBox.Text = "put script here";
}
}
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post