Hi,
I built a simple WPF application that targets .NET 4 :
[code] public MainWindow()
{
InitializeComponent();
IList<ICustomer> c = new List<ICustomer>();
c.Add( ... some data ...)
using (ListLabel ll = new ListLabel())
{
ll.LicensingInfo = "**MyLicense**";
ll.DataSource = c;
ll.Design();
}
}[/code]
If I debug this one, when I select “New” on the first .lst selection window it crashes.
If I change framework to 3.5 it works.
I’m using VS 2012 update 2, w8 x64
and
C:\Program Files (x86)\combit\LL18\Redistributable Files\combit.ListLabel18.dll
Thank you,
Max