• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Mentor
    Posts: 373
    Registered: ‎09-23-2004
    Accepted Solution

    Setting Break Points

    229 Views, 7 Replies
    02-27-2012 10:13 AM

    Hello,

    I'm using VB.Net in Visual Studio version 2010 with AutoCad 2010.  I haven't had a problem with this before, but now it seems that the program ignores break points that I set in the code when I'm trying to debug.  I just want to pause the code and add a "watch" to a variable.

    Anyone have a step by step way to do this as the msn method isn't working.

     

    Thanks,

    Mark

    Please use plain text.
    *Expert Elite*
    Posts: 6,631
    Registered: ‎06-29-2007

    Re: Setting Break Points

    02-27-2012 11:39 AM in reply to: mgorecki

    Hi,

     

    >> I haven't had a problem with this before

    So this project was already working in the debugger?

     

    Additional questions:

    • your project-type is a DLL (or an EXE)?
    • have you added any references that are not valid for 32bit or 64bit, whatever AutoCAD-option you have?
    • Have you made Framework 3.5 active (which would be the same as AutoCAD 2010 works with) or have you assigned 4.0?

     

    - alfred -

    -------------------------------------------------------------------------
    Alfred NESWADBA
    Ingenieur Studio HOLLAUS ... www.hollaus.at
    -------------------------------------------------------------------------
    Please use plain text.
    Valued Contributor
    FFlix
    Posts: 90
    Registered: ‎11-15-2011
    Please use plain text.
    Mentor
    Posts: 260
    Registered: ‎01-27-2010

    Re: Setting Break Points

    02-27-2012 02:53 PM in reply to: mgorecki

    if you have VS2010 EXpress you need to add this manualy in the 'file NameOfYouProject'.vbproj  :

     

        <StartAction>Program</StartAction>
        <StartProgram>c:\Program Files\AutoCAD 2010\acad.exe</StartProgram>

     

    after the line :

      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

     

    and after :

      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">

     

    the site http://through-the-interface.typepad.com/t......    is for a registered VS2010. so Solution 1 and 3 you cant do this.

     

    For Solution 2 it a file in your 'C:\Program Files\AutoCAD 2010' if you have this path for autocad.

     

     

    Please use plain text.
    Mentor
    Posts: 373
    Registered: ‎09-23-2004

    Re: Setting Break Points

    02-28-2012 08:01 AM in reply to: alfred.neswadba

    Hello Alfred,

    My project is a .dll.

    I believe the only references I added were AcDbMgd.dll and AcMgd.dll from ObjectARX 2010, inc-x64.

    As for the framework, where do I find that information?

     

    Thanks,

    Mark

    Please use plain text.
    Mentor
    Posts: 373
    Registered: ‎09-23-2004

    Re: Setting Break Points

    02-28-2012 08:10 AM in reply to: FFlix

    Hello Felix,

    Thank you for the link, but I'm a newbie at VB.Net and I'm not sure my program is what they are talking about.  I don't see a "solution" in the Solution Explorer (see pics).

     

    Thanks,

    Mark

    Please use plain text.
    Valued Contributor
    FFlix
    Posts: 90
    Registered: ‎11-15-2011

    Re: Setting Break Points

    02-28-2012 10:47 AM in reply to: mgorecki

    hi mark

     

    sorry that was a bit short - i remember that what i did at the time was what kean refers to as solution 2 and that is allocate the acad configuration file, which doesn't contain much more than kean shows, and change the version to 4.0, in my case. i think this version then needs to conform to the project's target framework: project -> project properties to open the properties tab, highlight compile, scroll down and choose advanced compile options -> set your target framework at the bottom. (i hope that will see you through)

     

    felix

    Please use plain text.
    Mentor
    Posts: 373
    Registered: ‎09-23-2004

    Re: Setting Break Points

    02-28-2012 11:50 AM in reply to: FFlix

    Hi Felix,

    I did what you did.  I copied the text from Keans site (step 2) and put it in my acad.exe.config file.  That did the trick.

     

    Thanks,
    Mark

    Please use plain text.