You really should apply some thought to the problem before asking for help. You display a string in a MessageBox like this:
You display a string in a TextBox like this:vb.net Code:
MessageBox.Show(myString)I've shown you how to create the string you want and I used the MessageBox to show it as an example. If you want to show the string in a TextBox instead then by all means do so. You already know how to create the string so you can do whatever you want with it.vb.net Code:
myTextBox.Text = myString




You really should apply some thought to the problem before asking for help. You display a string in a MessageBox like this:
Reply With Quote