VB Script Help

Started by
-1 comments, last by PenguinGLX 16 years ago
I wrote a VB Script (Macro) to Open OutLook Email Composer Window like this Dim oItem As Outlook.MailItem Dim oOutlookApp=CreateObject("Outlook.Application") Set oItem=oOutlookApp.CreateItem(olMailItem) Dim objInsp As Outlook.Inspector Dim wdEditor as Word.Document Set objInsp=oItem.GetInspector Set wdEditor=objInsp.WordEditor I made the Outlook New Email Composer Window Opened ,but the Cursor is always blinking in "To:" Frame , not in Body Frame where I can actually write the Content of the Email ,so Everytime I have to move the mouse in the Body Frame and Click which is inconvinient. What can I do to set The Cursor on the Body Frame? Thanks

This topic is closed to new replies.

Advertisement