Programming in OutlookExpress

  • Thread starter Thread starter kant
  • Start date Start date
K

kant

I know I can code in MS Outlook "ThisOutlookSession" by press "Alt+F11"
like the following code that add button when start the application.
But how can I code the same function in Outlookexpress ?
Thank you all

Private Sub Application_Startup()
Dim objCmdBar As CommandBar
Dim objCmdBarButton As CommandBarButton
.....
End Sub
 
I think this is in the "what do you expect for free?" catagory. Folks
on the microsoft.public.windows.inetexplorer.ie6_outlookexpress
newsgroup may provide more help with whatever you want to do.

-jcf

| I know I can code in MS Outlook "ThisOutlookSession" by press
"Alt+F11"
| like the following code that add button when start the application.
| But how can I code the same function in Outlookexpress ?
| Thank you all
|
| Private Sub Application_Startup()
| Dim objCmdBar As CommandBar
| Dim objCmdBarButton As CommandBarButton
| ....
| End Sub
|
 
Back
Top