Visual Studio
-
In this post we're going to continue the topic started in Part 1 of this series, which looked briefly at metaprogramming with AutoCAD using AutoLISP and VB(A). Now we're going to look at .NET, focusing initially on C# and VB.NET. [I found the inspiration for the code in this post from The Code Project, although […]
-
Microsoft has released Visual Studio 2008 and the .NET Framework 3.5. For the announcement see Soma's blog and for more detailed information see Scott Guthrie's. I haven't yet worked with this version of Visual Studio, but I'm told it installs side-by-side with previous versions of Visual Studio, so I'll be taking a look after AU. […]
-
I couldn't resist... I just had to have a play with this technology, today. 🙂 Here are the steps to get your first (very simple) F# application working inside AutoCAD. First we need to download and install the latest F# distributable from here (at the time of writing this was the July 31 release - […]
-
I've just come across the announcement for F#, and am pretty excited about it. Here's the link to Soma's blog, and here's the Microsoft Research F# site. F# is a functional programming language. Functional programming has a long association with technical computing, one of the reasons LISP was chosen as the initial programming interface for […]
-
[This post continues from the last post, which I've been back and modified slightly since it was posted.] Using the DWG Thumbnail in a simple application Thumbnail images, when they exist inside a drawing, live in a predictable place at the beginning of the file. This makes it possible for a module – such as […]
-
[As mentioned in the last post, I'll be publishing chunks of the handouts for my AU classes via this blog over the coming weeks] Introduction This session focuses on downstream technologies that can be used to access DWG content outside of AutoCAD-based products. We're going to start by creating a basic model inside AutoCAD comprised […]
-
I thought I'd bring your attention to this post on Scott Guthrie's blog - this is a really exciting announcement for .NET developers everywhere: Releasing the Source Code for the .NET Framework Libraries
-
In the last post we looked at some of the potential uses for the Reflector application. I didn't end up elaborating on the third reason I stated for the Reflector being a compelling tool - that it can be used to help optimize code based on the resultant IL created. For fun I played around […]
-
Reflection Now we're finally going to spend some time looking at Reflection. As mentioned in a previous post, .NET assemblies include intermediate language instructions plus metadata about types, members and assembly references. It is possible to access this information through Reflection. For another definition of Reflection, here's what MSDN has to say about System.Reflection: The […]
-
In the last-post-but-one we took an introductory look at protecting intellectual property in various types of application modules used with AutoCAD. Thanks to everyone for the subsequent discussion – it's great to see such diversity of opinion out there on this subject. Before moving on to Reflection and the Reflector tool, I thought I'd first […]