Hi
cdrake,
cdrake said:
...It works fine when I analyze the Can649 database but is very hit and miss when I analyze data bases derived from my own grouping strategies. And if it does work without error I generally have to narrow the draw range to such an extent that the endeavor is useless at providing any useful information...
I don't actually use it myself but from reading your post I thought I might be able to give you a couple of ideas on how to track down the error and resolve it, I hope you don't mind?
It sounds like the error only occurs when you try and import your own data.
Basically, an overflow error results when you try to make an assignment that exceeds the limitations of the target of the assignment.
One reason could be that the variable it is using is of an
Integer type, and that particular variable only caters for a maximum value of
32,767. If you can get into the code try and track down where the
Dim statement is and change that variable to
Long.
Basically, the data type conversion is too large to be represented within the range of values allowed for that type of variable, so assign the value to a variable of a type that can hold a larger range of values i.e.
Long.
Another reason could be that it is trying to divide by ZERO, which doesn't sound like that is the issue in this particular case.
You could go to debugging mode and run through the code to find where the error occurs.
I hope this helps or at least gives you an insight on where to start to correct it.
You could also of course email or get hold of Nick!
Regards,
PAB
-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-∏-
12:45, restate my assumptions.
(1) Mathematics is the language of nature.
(2) Everything around us can be represented and understood through numbers.
(3) If you graph the numbers of any system, patterns emerge. Therefore, there are patterns, everywhere in nature.