Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi, In Outllok form 'Open event'

Status
Not open for further replies.

mic12345

Programmer
Jun 19, 2002
14
0
0
US
Hi,

In Outllok form 'Open event' I disabled toolbar by writing this below code.

For Each objCBar in Item.Getinspector.CommandBars
If objCBar.name = "Standard" then
objCBar.visible = false
end if
Next

and when exit from the form 'item_close()', activated again by writing this below code.

For Each objCBar in Item.Getinspector.CommandBars
If objCBar.name = "Standard" then
objCBar.visible = True
End If
Next

It is working fine in OL 2000 and OL 2002 but not in OL 98.
In OL 98 also I have problem only with calendar items. If I open any of the calendar item, I don't see standard toolbar but if I open any emails, I see standard toolbar.
Any one has any idea??

Thanks in advance

Mic
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top