I've converted VO source code to WinForms in X#, from its .AEF file.
A ListBox UI control throws the following error on compile/build:
Severity Code Description Project File Line Suppression State
Error XS1061 'VO.ListBox' does not contain a definition for 'aSelected' and no accessible extension method 'aSelected' accepting a first argument of type 'VO.ListBox' could be found (are you missing a using directive or an assembly reference?)
Severity Code Description Project File Line Suppression State
Error XS0246 The type or namespace name 'DoubleListBoxSelect' could not be found (are you missing a using directive or an assembly reference?)
Code: Select all
PROTECT poDoubleListBoxSelect AS ListBox
LOCAL aSelected, aAvailable AS ARRAY
aAvailable :=poDoubleListBoxSelect:aAvailable
ASelected :=poDoubleListBoxSelect:aSelected
poDoubleListBoxSelect := DoubleListBoxSelect{SELF:oDcExcludeLB, SELF:oDcIncludeLB, SELF:paExcluded, SELF:paIncluded}
Is the ListBox with doubleListBox property a part of X# UI Control ?
Any alternative UI controls to replace it ?