Problem:
Release: 5.0 .NET
After passing a TreeView object reference to my own (not Painter created) class, there is no Intellisense available in this class which shows the methods for a TreeView. Only 4 standard methods like "equal" are offered.
Resolution:
A reference to Visual Studio 2005 System.Windows.Forms is required in the references of the project of the own class.
The Intellisense is available for the notation
SET Myobj :: "MyMethod"( ... )
and also for the Micro Focus extended notation
INVOKE MyObj::"MyMethod" ...
but there is no Intellisense, when the invoke is written in standard notation as
INVOKE MyObj "MyMethod" using ... returning
