I have converted a c# program to vb.net with a tool The program works fine in c#
in vb I get this error
Public member 'get_SymbolList' on type 'ConnectionControlClass' not found."}
at this line
oList = axTradeIdeasWindowX1.Connection.get_SymbolList(CType(i,Integer))
IN C#
This line works fine
oList = axTradeIdeasWindowX1.Connection.get_SymbolList(CType(i,Integer))
any ideas what the problem could be.
I have checked each and every line in the program list
walked through the Objects could not find get_SymbolList only found SymbolList
wonder if get_ is a C# construct and if there is a vb.net equivalent
Connectionclass it is impossible to say.. however it's probably because the converter has changed a property to a method.