After I have created the rp3Runtime and call a method the next error appear:
An unhandled exception occured in module OLEAUT32.DLL of your Application!
Code 0xC0000005 (EIP = 0x759B57BF)
RP3 Runtime
I have tried the same on a XP-machine and there it works fine. I only had the problem with embedded pictures as mentioned by Dick.
Do you have any ideas?
Reportpro 3 and windows 10
-
- Posts: 7
- Joined: Wed Mar 02, 2016 11:54 am
Reportpro 3 and windows 10
- Attachments
-
- Error.jpg (21.18 KiB) Viewed 842 times
Reportpro 3 and windows 10
Hi Ben,
do you have registered the RP3 OLE objects on this machine?
Unfortunately I don't use RP3 myself, but I have seen it working on Windows 10 machines (also on one of my test machines).
Wolfgang
do you have registered the RP3 OLE objects on this machine?
Unfortunately I don't use RP3 myself, but I have seen it working on Windows 10 machines (also on one of my test machines).
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
-
- Posts: 7
- Joined: Wed Mar 02, 2016 11:54 am
Reportpro 3 and windows 10
Hi Wolfgang,
That was the problem. I have registered RpRt309.Dll and now it works fine.
Danke.
Ben
That was the problem. I have registered RpRt309.Dll and now it works fine.
Danke.
Ben
Reportpro 3 and windows 10
Ben,
Have a look at "registry free COM".
That saves you a lot of problems like this one.
The short version of the solution is that you add a manifest file to your exe (can be external but can also be linked into your app) and this manifest file describes the COM components used by your app. By using that you no longer have to register your COM components.
The manifest contain something like this:
Robert
Have a look at "registry free COM".
That saves you a lot of problems like this one.
The short version of the solution is that you add a manifest file to your exe (can be external but can also be linked into your app) and this manifest file describes the COM components used by your app. By using that you no longer have to register your COM components.
The manifest contain something like this:
Code: Select all
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity name="MAIN.EXE" version="6.38.0.0" type="win32" processorArchitecture="*"/>
<file name="ActiveMap35.ocx" hashalg="SHA1">
<comClass
clsid="{0771306C-934E-4B3B-AB0A-E196335A00B2}"
description="MapSelector Property Page"/>
<comClass
clsid="{0E320890-AA77-4396-BA10-42F80C159895}"
description="ActiveMap35.Pen"
threadingModel="apartment"
progid="ActiveMap35.Pen"/>
</file>
etc.
Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
The Netherlands
robert@xsharp.eu
Reportpro 3 and windows 10
Hi Robert,
I'm using registration free COM or SideBySide a lot, both with X# COM modules and 3rd party COM modules.
Some time ago I have spent a lot of time trying to make that work also with ReportPro 3 (for a customer), but have failed.
Then you had created a COM free version of ReportPro - maybe that could be a part of the X# version of RP3.
This COM free version works very well (even if you have applications with different VO runtimes and therefore different ReportPro version on the same machine).
Wolfgang
I'm using registration free COM or SideBySide a lot, both with X# COM modules and 3rd party COM modules.
Some time ago I have spent a lot of time trying to make that work also with ReportPro 3 (for a customer), but have failed.
Then you had created a COM free version of ReportPro - maybe that could be a part of the X# version of RP3.
This COM free version works very well (even if you have applications with different VO runtimes and therefore different ReportPro version on the same machine).
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
-
- Posts: 7
- Joined: Wed Mar 02, 2016 11:54 am
Reportpro 3 and windows 10
Thanks Robert, i 'll have a look.
Reportpro 3 and windows 10
Hello Robert,
im currently trying to get our VO application working complete side-by-side and doing good progress. But RPRT309.DLL doesn´t work. Wolfgang Riedmann wrote, that you created a com-free Version of Report pro. Can I get this too? Or do you have a manifest file for COM-RPRT309.DLL that ist working?
TIA
Heiko J. Pongratz
im currently trying to get our VO application working complete side-by-side and doing good progress. But RPRT309.DLL doesn´t work. Wolfgang Riedmann wrote, that you created a com-free Version of Report pro. Can I get this too? Or do you have a manifest file for COM-RPRT309.DLL that ist working?
TIA
Heiko J. Pongratz
Reportpro 3 and windows 10
Hello Robert,
I just solved it. I created a manifest for RPRT309.DLL an one for the application using it with a reference to RPRT309.DLL and now it works like a charm!
If anyone has the same Problem and wants to know a little bit more, please feel free to ask me.
Greetings
Heiko J. Pongratz
I just solved it. I created a manifest for RPRT309.DLL an one for the application using it with a reference to RPRT309.DLL and now it works like a charm!
If anyone has the same Problem and wants to know a little bit more, please feel free to ask me.
Greetings
Heiko J. Pongratz
Reportpro 3 and windows 10
Hi Heiko,
it would be very welcome for many Report Pro users to have such a solution - maybe you could contribute it.
Wolfgang
it would be very welcome for many Report Pro users to have such a solution - maybe you could contribute it.
Wolfgang
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Reportpro 3 and windows 10
Yes, please post if for future reference, thanks!
Chris Pyrgas
XSharp Development Team
chris(at)xsharp.eu
XSharp Development Team
chris(at)xsharp.eu