Link to home
Start Free TrialLog in
Avatar of fiak
fiak

asked on

Error occurred: Number:-2147417848

I have a problem with my application. In this application I may see different reports which are generated by request produced by VB front-end. I have several account numbers in a ListBox. When I click on some of them I see a massage:

"Method 'Action' of object 'CrystalCtrl' failed
 Number:-2147417848"

and report is empty.

But I can see this report on the same account number using Crystal Report Writer. What happen with my VB5.0 application
when I added some new VB patches on my PC?
What does this error: -2147417848 mean?

Please post here or email me at: tanyaf@altavista.net

Sincerely
Tanya Fiak
Avatar of Mirkwood
Mirkwood

Are you using:
   - doevents
   - more than 250 menu item or controls on one form
   - forms from within a dll
   - long loops in form_load
Just only a comment: that number -2147417848 is the most negative number a long-type variable can store; it's simply the bit sign plus all zeroes at possitive side (this is, you have a 1 followed by 31 0's): 1000 0000   0000 0000   0000 0000   0000 0000

I don't think it be an actual error, but another kind of problem.


correction: the number that vikiing talk about is  2147483648 or &h80000000

Your number is -2147417848 = &h80010108

RPC_E_DISCONNECTED:
The object invoked has disconnected from its clients.

Hope this help
ASKER CERTIFIED SOLUTION
Avatar of Mirkwood
Mirkwood

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You're right, Chabaud; I don't know how I missed so brutely... :(