Exchange Forum > Search Forums
Search Results
Search Results

Space Cadet

AutoCAD General
Drawing#.dwg now ask to save?
  F1T7P1#3  See it's not such a big deal. You push buttons all day, Right?...
AutoLISP and Visual LISP
Your favorite shortcut function
  F2T1P3#24  This is too cool. Have you ever wanted to clear the text screen real fast. I call it N but you can rename it anything you like. (defun...
How do you get the tab names?
  F2T3P1#4  Here's a function that will show your tabs in the correct order. (defun GetLayoutList (/ Layouts) (vlax-map-collection (vla-get-layouts...
Inserting Blocks With Variables
  F2T6P1#3  I think he's looking for something like this: (defun c:BQZ (/ Pt YesNo) (if (setq Pt (getpoint "\nSpecify insertion point for blocks: "))...
Variables for RevCloud
  F2T41P1#4  Are you still using R14? The CAD Guy is right, it's pretty simple on the command line. Once you change the arc length variables...
ObjectDCL and OpenDCL
ObjectDCL vs. OpenDCL
  F5T1P1#1  I've written a few small programs with dcl dialogs for my department. What is this new interest in ObjectDCL and OpenDCL all about?...
ActiveX and VBA
How to activate Modelspace in VBA
  F6T3P1#2  You've almost got it right. Just add an "ac" before "ModelSpace". Sub Test() ThisDrawing.ActiveSpace = acModelSpace End Sub...