Hi,
What is the code for a new line of text to a text box attached to a userform, for example:
Where ArrayContract(i) is a line of text eg: Microsoft Excel
Basically this code is within a loop that searches an array for text values that meet a condition. The chances are the search will find up to three text lines that it will add to the textbox, I am just not sure of the code to add the text to the text box.
Thanks is advance for your help,
Chris
What is the code for a new line of text to a text box attached to a userform, for example:
Code:
UserForm1.Text.Add = “/nl”, ArrayContract(i)
Where ArrayContract(i) is a line of text eg: Microsoft Excel
Basically this code is within a loop that searches an array for text values that meet a condition. The chances are the search will find up to three text lines that it will add to the textbox, I am just not sure of the code to add the text to the text box.
Thanks is advance for your help,
Chris