Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by borgunit

  1. borgunit

    Autodesk 9 SHX files

    Possible, but maybe not. Do a google search, or post its name here. Someone may have it.
  2. borgunit

    Autodesk 9 scale

    The trouble with small format printing is that the paper has defined margins that you cannot print on. THis reduces the print area and scales get reduced down. The easiest solution is to experiment and "tweak" the scale. Basically by trial and error, alter the scale till you get what you want...
  3. borgunit

    VBA - Passing variable to next form

    Another option is to make the variable global in scope and have it available to any module also. Another option.
  4. borgunit

    AUTOCAD 2000

    http://www.cadmasters.com/techsupp/Acad/ac2khpconfig.html#Anno
  5. borgunit

    help creating linetypes

    What do you mean by gap? This?... - ------------------------ -
  6. borgunit

    Convert dwg to dstv

    IF you mean a neutral format, you might try PDF or DWF. Some freeware for PDF is PDF995 and Autodesk gives away a DWF viewer.
  7. borgunit

    Is there an external caracter finder for AutoCAD?

    There is but you will at need to know AutoCAD programming to do it. It is called ObjectDBX.
  8. borgunit

    Visual Basic Question

    Inserting a block with a dimstyle defined in it will bring the dimstyle with it.
  9. borgunit

    Visual Basic Question

    Could you insert the part as a block (pre-dimensioned) and then edit after insert?
  10. borgunit

    Autocad Recover

    A few suggestions... http://usa.autodesk.com/adsk/servlet/ps/item?id=2881038&linkID=2475323&siteID=123112 http://usa.autodesk.com/adsk/servlet/ps/item?id=2896262&linkID=2475323&siteID=123112 http://usa.autodesk.com/adsk/servlet/ps/item?id=2872472&linkID=2475323&siteID=123112...
  11. borgunit

    Turning a SPLINE to arcs !!

    I have used this with great success in the past... (defun C:SPLINE2PLINE (/ SPLINES PLINETYPE OSMODE I SPL ED CODEPAIR) (if (setq SPLINES (ssget (list (cons 0 "spline")))) (progn (if (zerop (setq PLINETYPE (getvar "plinetype"))) (setvar "plinetype" 1) ) ;if (setq OSMODE...
  12. borgunit

    Toolbar in 2006

    Can't you just right click on any icon and then customize?
  13. borgunit

    toolbar button to close without saving?

    Make a button with this (command "close" "y")
  14. borgunit

    Filtering layers in vba

    Dim acLyrs As AcadLayers Dim acLyr As AcadLayer ''''''''''''''''''''''''''''''''''''''' On Error GoTo ErrHandler Set acLyrs = ThisDrawing.Layers For Each acLyr In acLyrs If instr(acLyr.name, partOfSomeLayerName) Then aclyr.color = yourNewLayerColor End If Next acLyr
  15. borgunit

    Filtering layers in vba

    Just iterate through the layers collection and look for the name string in the layer.name

Part and Inventory Search

Back
Top