Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Word 97 SR-2 very strange
Message
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
00700081
Message ID:
00700191
Views:
11
This message has been marked as a message which has helped to the initial question of the thread.
>I've got an strange one here.
>
>If you create a new instance of Word and change its WindowState to 2 (Minimised) then set its Visibility to .T. the resulting instance of Word has no Menu bars?
>
>Does anyone know why this happens and if there is a way of turning the bars back on?
>
>Thanks in anticipation.

You need to activate word application before changing/setting windowstate:
"...Use the Activate method to activate a window prior to setting the window state..." (VBA for Word Help on "Windowstate property").
The problem is that you can not activate invisible word application. But if it is visible, then you do not need to issue additional 'activate'.

So why not to use this:
oword=createobj....
oword.visible=.t.
oword.Windowstate=2
....
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform