CADViewX + .NET
Moderators: SDS, support, admin
CADViewX + .NET
Hi,
I am currently in the process of migrating from VB6 to Visual Studio 2005. When running the VB.NET demo project (or even just adding the control to an empty form with no code), I get the following two errors when closing the program:
<ul><li>The exception unknown software exception (0x0eedfade) occurred in the application at location 0x7c812a5b</li>
<li>Runtime error 217 at 03CE1036</li>
</ul>
I am currently in the process of migrating from VB6 to Visual Studio 2005. When running the VB.NET demo project (or even just adding the control to an empty form with no code), I get the following two errors when closing the program:
<ul><li>The exception unknown software exception (0x0eedfade) occurred in the application at location 0x7c812a5b</li>
<li>Runtime error 217 at 03CE1036</li>
</ul>
Hello!
Thank you for the remark. We have found this problem too. We will solve it and inform you about results when update will be available.
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
Thank you for the remark. We have found this problem too. We will solve it and inform you about results when update will be available.
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
Hi,
I was just checking to see if there is any progress on this problem. This problem is currently holding up the release of a production application. We are anxious to get the problem resolved as soon as we can. Please let me know if there is anything that I can do to help facilitate you.
Thanks.
James "ACE" Gayhart: If at first you don't succeed, call it Version 1.0.
I was just checking to see if there is any progress on this problem. This problem is currently holding up the release of a production application. We are anxious to get the problem resolved as soon as we can. Please let me know if there is anything that I can do to help facilitate you.
Thanks.
James "ACE" Gayhart: If at first you don't succeed, call it Version 1.0.
Hello!
Unfortunately this problem has not been solved yet.
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
Unfortunately this problem has not been solved yet.
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
Hello!
Please try CADViewX v.6.1 beta: http://www.cadsofttools.com/download/CADViewXRL.zip
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
Please try CADViewX v.6.1 beta: http://www.cadsofttools.com/download/CADViewXRL.zip
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
Dear Jeff,
<b>CADViewX</b> package, mentioned above, contains VB.NET demo. Have you tried it?
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
<b>CADViewX</b> package, mentioned above, contains VB.NET demo. Have you tried it?
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
I tried the demo a few times and didn't receive an error. There are times I can open our software several times and not receive an error. It seems purely random when it occurs. Sometimes when I receive the error, I'll re-load our software to view the same drawing and I won't receive the error.
This is the code I use to view the drawing:
Me.AxCADViewX1.HScrollBarVisible = False
Me.AxCADViewX1.VScrollBarVisible = False
Me.AxCADViewX1.CtlVisible = True
Me.AxCADViewX1.LoadFile(strMyDrawingPath)
Me.AxCADViewX1.ToolBars.Items(1).Items(4).Action.Execute()
This is the code I use to view the drawing:
Me.AxCADViewX1.HScrollBarVisible = False
Me.AxCADViewX1.VScrollBarVisible = False
Me.AxCADViewX1.CtlVisible = True
Me.AxCADViewX1.LoadFile(strMyDrawingPath)
Me.AxCADViewX1.ToolBars.Items(1).Items(4).Action.Execute()
Why don't you just use the following line:
Sergey.
Please post questions to the forum or write to support@cadsofttools.com
Code: Select all
CADViewX1.Actions.Item("Fit to Window").Execute()
Please post questions to the forum or write to support@cadsofttools.com