views:

281

answers:

2

Hi all

I am trying to use DevExpress with vs2010 , and got that error .

It comes from line private DevExpress.XtraTreeList.TreeList treeList1;

But I have already a Reference to that DevExpress.XtraTreeList.v9.3 and have there copy

local flag set to true.

How i can solve that issue ?

A: 

It's possible that the class doesn't exist in that version of the assembly. Have you tried using Object Browser to navigate the namespace tree?

Richard Szalay
I think they not support 2010
Night Walker
+1  A: 

DevExpress.XtraTreeList.v9.3 depends on other assemblies to run. Make sure you also have the following references:

DevExpress.Data.v9.3
DevExpress.Utils.v9.3
DevExpress.XtraEditors.v9.3

Hope this helps.

wmasm
I have the 3 of them but still i have the same problem
Night Walker
Are you targeting for .Net 4.0?
wmasm
yes, I am .....
Night Walker
Try changing it to 3.5 - I don't think they are ready for 4.0 so far.
wmasm
that helped , thanks
Night Walker