Using LO 4.4.1.2 on Windows 8.
I noticed that all the options in Basic IDE Options
are greyed out. I found that by going to Advanced Options
and enabling the option Enable experimental features
the options in Basic IDE Options
become available.
I am concerned however it states that these are experimental features marked as being unstable. Has anyone any experience of allowing this feature?
EDITED 13/01/2017
@EasyTrieve I set all the options on for the Basic IDE Options
and had some success. All the options other than Enable code completion
work. There appears to be no code completion. Looking at Help it says -
"Code Completion
This feature helps the Basic programmer to complete the code, saves extensive typing and helps to reduce coding errors.
Enable code completion
Display methods of a Basic object. Code completion will display the methods of a Basic object, provided the object is a UNO extended type. Its does not work on a generic Object or Variant Basic types.
When a variable is a UNO interface or structure, a list box appears when pressing the dot after a variable’s name (like aVar. [list box appears] ). Its methods and variables are listed in the list box, displayed just below. You can navigate between the suggested methods and variables with the arrow keys. To insert the selected entry, press the Enter key or double click on it with the mouse. To cancel the list box, press the Esc key.
When typing the method’s name, and pressing the Tab key once, it will complete the selected entry, pressing the Tab key again will cycle through the matches with the longest prefix. For example, when aVar.aMeth is typed, it will cycle through aMeth1, aMethod2, aMethod3 entries, and other entries are not hidden.
Example:
Dim aPicker As com.sun.star.ui.dialogs.XFilePicker
is a valid variable definition, its methods can be accessed via the dot (".") operator:
aPicker.getDisplayDirectory()"
The sample code shown here does work. As it says in Help it only applies to Methods and to objects of a UNO extended type and does not work on a generic Object or Variant Basic type so I guess that it is working as specified.