DoubleListBox UI Component in X# Winform - VO dialect

Public support forum for peer to peer support with related to the Visual Objects and Vulcan.NET products
Post Reply
ArunBerlin
Posts: 33
Joined: Tue Oct 27, 2020 1:19 pm
Location: India

DoubleListBox UI Component in X# Winform - VO dialect

Post by ArunBerlin »

Hi,

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 ?
User avatar
robert
Posts: 4225
Joined: Fri Aug 21, 2015 10:57 am
Location: Netherlands

Re: DoubleListBox UI Component in X# Winform - VO dialect

Post by robert »

Arun,
I think this class is part of one of your in-house libraries.
Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
ArunBerlin
Posts: 33
Joined: Tue Oct 27, 2020 1:19 pm
Location: India

Re: DoubleListBox UI Component in X# Winform - VO dialect

Post by ArunBerlin »

Robert,

Thank you. You were right DoubleListBox was a custom in-house Library.
I was unaware of the usage of a dependent library project.

Do I need to delete this thread ?
User avatar
Chris
Posts: 4562
Joined: Thu Oct 08, 2015 7:48 am
Location: Greece

Re: DoubleListBox UI Component in X# Winform - VO dialect

Post by Chris »

Hi Arun,

Please don't worry about that, don't need to delete anything!
Chris Pyrgas

XSharp Development Team test
chris(at)xsharp.eu
Post Reply