Getting the error while building VB.NET code:- Type ''Syncfusion.Calculate.CalcQuick'' is not defined.

Hello,
While building my application which involves Syncfusion calculations, i get the following error:
Type 'Syncfusion.Calculate.CalcQuick' is not defined.

It points to the following line within my .vb code:
Public Shared objCalQuick As Syncfusion.Calculate.CalcQuick

I have tried reinstalling the Syncfusion package but it still did not solve the problem. Please help.

1 Reply

AD Administrator Syncfusion Team August 30, 2007 12:15 PM UTC

This code

Public Shared objCalQuick As Syncfusion.Calculate.CalcQuick


does not create the object. Instead, it just declares the object. Try using this code:

Public Shared objCalQuick As New Syncfusion.Calculate.CalcQuick

Loader.
Up arrow icon