Problem with SelfPopUpMenu
Moderators: SDS, support, admin
Problem with SelfPopUpMenu
Hi,
I'm using VB.Net 2005 and CADViewX to developed a simple DWG Viewer program. My question is I'm having a problem with CADViewX PopUp Menu. I don't want PopUp Menu in my program to show up. Even though I set "SelfPopupMenu = False", it still keep coming up when right-click mouse. Am I using the right function?
Thanks.
I'm using VB.Net 2005 and CADViewX to developed a simple DWG Viewer program. My question is I'm having a problem with CADViewX PopUp Menu. I don't want PopUp Menu in my program to show up. Even though I set "SelfPopupMenu = False", it still keep coming up when right-click mouse. Am I using the right function?
Thanks.
Hello,
It is necessary to set this property on run time instead of design time.
For example, add the following string to your application as below:
Sergey.
please post questions to the forum or write to support@cadsofttools.com
It is necessary to set this property on run time instead of design time.
For example, add the following string to your application as below:
Code: Select all
<b>Private Sub</b> CADViewX1_OnAfterLoad(<b>ByVal</b> sender <b>As Object</b>, <b>ByVal</b> e <b>As</b> System.EventArgs) <b>Handles</b> CADViewX1.OnAfterLoad
...
CADViewX1.SelfPopupMenu() = <b>False</b>
...
<b>End Sub</b>
please post questions to the forum or write to support@cadsofttools.com
Hi Birdie,
Please reinstall CADViewX available on: http://www.cadsofttools.com/download/cadviewx.zip
Add the following lines to the VB.NET demo project available in the
..\Program Files\CADViewX\Demos\VB.NET\.. folder:
Sergey
please post questions to the forum or write to support@cadsofttools.com
Please reinstall CADViewX available on: http://www.cadsofttools.com/download/cadviewx.zip
Add the following lines to the VB.NET demo project available in the
..\Program Files\CADViewX\Demos\VB.NET\.. folder:
Code: Select all
<b>Private Sub</b> CADViewX1_OnCreate(<b>ByVal</b> sender <b>As Object</b>, <b>ByVal</b> e <b>As</b> System.EventArgs) <b>Handles</b> CADViewX1.OnCreate
CADViewX1.SelfPopupMenu() = <b>False
End Sub</b>
please post questions to the forum or write to support@cadsofttools.com
Hi Birdie,
I've sent you compiled project of VB.NET demo with disabled pop-up window on right click. Please run it to check whether it will work.
Sergey.
please post questions to the forum or write to support@cadsofttools.com
I've sent you compiled project of VB.NET demo with disabled pop-up window on right click. Please run it to check whether it will work.
Sergey.
please post questions to the forum or write to support@cadsofttools.com
Hi Birdie,
If possible send your project on support@cadsofttools.com. We'll try to find out the reason of the problem.
Seregy.
please post questions to the forum or write to support@cadsofttools.com
If possible send your project on support@cadsofttools.com. We'll try to find out the reason of the problem.
Seregy.
please post questions to the forum or write to support@cadsofttools.com
Hi Birdie,
Thanks a lot for your words.
Don't hesitate to ask questions.
Sergey.
please post questions to the forum or write to support@cadsofttools.com
Thanks a lot for your words.
Don't hesitate to ask questions.
Sergey.
please post questions to the forum or write to support@cadsofttools.com