Hi
I was trying to build a custom based form in outlook 2013. I got the tutorial on News, Tips, and Advice for Technology Professionals - TechRepublic
I followed the step and was able to add a combobox to the form as well as a VB Script.
But each time i run the form the combobos did populate
And when I run it through the VBA script in outlook, it gave error message: Run-time error 424. Object required.
The VB code is
Sub Item_Open()
Set FormPage = Item.GetInspector.ModifiedFormPages("General")
Set Control = FormPage.Controls("cboDepartment")
Control.PossibleValues = "Administrative;Accounting;IT"
End Sub
Pls any suggestion to correct this message.
The 2nd problem....
I would like to populate the combobox through excel range/ cells. Could anyone suggested how I can run excel in outlook VBA while connecting the excel range to populate the combobox
Thanks
I was trying to build a custom based form in outlook 2013. I got the tutorial on News, Tips, and Advice for Technology Professionals - TechRepublic
I followed the step and was able to add a combobox to the form as well as a VB Script.
But each time i run the form the combobos did populate
And when I run it through the VBA script in outlook, it gave error message: Run-time error 424. Object required.
The VB code is
Sub Item_Open()
Set FormPage = Item.GetInspector.ModifiedFormPages("General")
Set Control = FormPage.Controls("cboDepartment")
Control.PossibleValues = "Administrative;Accounting;IT"
End Sub
Pls any suggestion to correct this message.
The 2nd problem....
I would like to populate the combobox through excel range/ cells. Could anyone suggested how I can run excel in outlook VBA while connecting the excel range to populate the combobox
Thanks