Problem with SelfPopUpMenu

Discuss and ask questions about CADViewX (Lite and Pro versions).

Moderators: SDS, support, admin

Post Reply
birdie103
Posts: 5
Joined: 05 May 2006, 10:50
Location: Malaysia
Contact:

Problem with SelfPopUpMenu

Post by birdie103 » 05 May 2006, 10:51

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.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 05 May 2006, 15:15

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:

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>
Sergey.


please post questions to the forum or write to support@cadsofttools.com

birdie103
Posts: 5
Joined: 05 May 2006, 10:50
Location: Malaysia
Contact:

Post by birdie103 » 08 May 2006, 09:22

Hi Sergey,

Thanks for your fast reply. I tried your example setting the property on runtime (OnAfterLoad), but it still popping up the menu when right-click mouse. I even tried in VB.Net Demo that come with CADViewX. Is this a bugs in CADViewX?

Thanks.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 08 May 2006, 11:06

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:

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>
Sergey

please post questions to the forum or write to support@cadsofttools.com

birdie103
Posts: 5
Joined: 05 May 2006, 10:50
Location: Malaysia
Contact:

Post by birdie103 » 08 May 2006, 13:06

Hi Sergey,

Well... Same result. I can't disable the Pop-up Menu. Thanks for your fast support anyway.

Thanks.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 08 May 2006, 17:31

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

birdie103
Posts: 5
Joined: 05 May 2006, 10:50
Location: Malaysia
Contact:

Post by birdie103 » 09 May 2006, 11:37

Hi Sergey,

It worked. Thanks in a million. but what am I doing wrong?? I'm using the same code as yours..

Thanks.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 10 May 2006, 10:47

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

birdie103
Posts: 5
Joined: 05 May 2006, 10:50
Location: Malaysia
Contact:

Post by birdie103 » 11 May 2006, 10:51

Hi Sergey,

Thanks for your fast reply. I'm found out that I still using old ocx that downloaded from ZNet... I'm think it conflit with the one your uploaded. Now everything is okay. Great support from you help a lot.

Thanks.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Post by support » 11 May 2006, 10:56

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

Post Reply