Somewhere I found instructions to go look in the FM20.CHM help file which I
was able to track down but this doesn't seem to be correct either since it
doesn't even mention the Page.Controls property.
Thanks
AB
--
Eric Legault - B.A, MCP, MCSD, Outlook MVP
--------------------------------------------------
{Private e-mails ignored}
Job: http://www.imaginets.com
Blog: http://blogs.officezealot.com/legault/
As far as I can see the controls property is the only way of programatically
referencing a specific control on a form, as such it seems pretty important
and deserves some mention somewhere. Or is there some other way of
referencing a specific control. Specifically I'm trying to assign an event
handler to the onClick of a command button from my add-ins code. I realize
this isn't a vba issue exactly but I couldn't figure out where else to ask.
"Eric Legault [MVP - Outlook]" <elega...@REMOVEZZZmvps.org> wrote in
message news:75D500F6-CE09-49DC...@microsoft.com...
The Pages collection is actually retrieved through the Outlook VBA Inspector
object (via the ModifiedFormPages property), which is in the VBA help file.
Also, if you need to wire up the Click event for a button on your custom
form, just declare the event like this:
Sub Command1_Click()
'Your code
End Sub
There's also a lot of helpful tips here:
Microsoft Outlook Forms:
http://www.outlookcode.com/d/forms.htm
If so that's fine I just don't know VBScript very well. Maybe you can give
me some hint as to where to look for a way to send an http request.
"Eric Legault [MVP - Outlook]" <elega...@REMOVEZZZmvps.org> wrote in
message news:A20003E3-2BA2-4BB6...@microsoft.com...
And how in the world does HTTP requests come into play with your solution?
Maybe give me an overview of your current solution's architecture and what
you are trying to accomplish.
I'm very new to Outlook programming but I've been a programmer since the
dawn of time and in all these years, if I've learned one thing is that cats
a skinned in many ways so if I'm completely missing the best way to do this
please let me know.
Regards
AB
"Eric Legault [MVP - Outlook]" <elega...@REMOVEZZZmvps.org> wrote in
message news:ECC598CE-66CA-4F8B...@microsoft.com...