|
my users can setup a list of user defined fields. i need to add a control to my Outlook 2007 form region when it loads for each of UDF's that my user has setup.
is this possible? thanks.
p.s. i have tried placing the following code within my form region constructor, but it does not populate the text property.
Outlook. OlkTextBox dynamicTextBox = new Outlook.OlkTextBox();
Form.Controls.Add( "Forms.TextBox.1", dynamicTextBox, true);
dynamicTextBox.Text = "Hello world!"; |