In the command window, if you type
oWord=CREATEOBJECT("word.application"
<ENTER>
The moment you type oWord. intellisense kicks in and provides the available choices for the object created o.
But, when you are in code editor or in a PRG editing window, the same does not happen.
oWord =CREATEOBJECT("word.application"
oWord. nothing happens..
However, if you want the same advantage as in code editor... then.. follow the simple trick..
LOCAL oWord AS "word.application"
oWord=CREATEOBJECT("word.application"
oWord. The intellisense starts helping you.

ramani
(Subramanian.G)
oWord=CREATEOBJECT("word.application"
The moment you type oWord. intellisense kicks in and provides the available choices for the object created o.
But, when you are in code editor or in a PRG editing window, the same does not happen.
oWord =CREATEOBJECT("word.application"
oWord. nothing happens..
However, if you want the same advantage as in code editor... then.. follow the simple trick..
LOCAL oWord AS "word.application"
oWord=CREATEOBJECT("word.application"
oWord. The intellisense starts helping you.
ramani
(Subramanian.G)