Re: Textbox Event Outlook
This doesn't work any ideas? no errors just the text isn't in the textbox when the mail is recieved
Code:
Function Item_Send()
Set objPage = Item.GetInspector.ModifiedFormPages("P.2")
Set objControl = objPage.Controls("TextBox1")
objControl.value = "Nope neither Maybe because its based on a template BaBladeBla."
End Function
Re: Textbox Event Outlook
Outlook Forms use VB Script and there are some events but have you tried writting a lost focus event? Use the script editor nehind the Form. See this FAQ for details: http://www.vbforums.com/showthread.php?t=402088
The Item is not instanciated so it wont work.
Re: Textbox Event Outlook
Thanks for reply I have already visited that tutorial it does not mention events in any deatil other than _click, and yes i tried TextBox1_LostFocus
Re: Textbox Event Outlook
From a quick google instinciated is declare the outlook?