Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. rocheey

    Macro for adding all assem parts to single drawing?

    What my app did was to loop through the assembly, gather up a part list of unique parts/configurations to export (because non sheet metal parts such as fasteners did not get nested), counted the quantities of each part in the assembly, and along the way grabbed the thickness property of the...
  2. rocheey

    Macro for adding all assem parts to single drawing?

    This makes sense...but you dont so much need 200 parts on a drawing as you need 1 part on a drawing, 200 times. I wrote similar macros for exporting sheet metal assemblies to CAM software. But I had the added advantage of creating a flat pattern view that was pretty much guaranteed to be...
  3. rocheey

    SolidWorks Needs To Do A Better Job At Exporting

    I would have occasional trouble if the dimension was at non-orthagonal angles (say, from an ISO view). It wasnt so much of a bug (cause swx would read it back in fine) but more a difference of opinion (swx vs acad) as to where the default text placement should be in those situations. Importing...
  4. rocheey

    How do you zero flattened sheet metal on drawing?

    What Ive done previously was to use a macro to parse the actual 2d entities out of the drawing view, and get a "bounding box" for the entities.Then Id write my own dxf file, offseting the location of the entities by the lower left corner of the bounding box. This also allowed me to output a...
  5. rocheey

    Casting and machining drawings

    Use a derived configuration. That way each config is linked.
  6. rocheey

    SW's Layers & Dims/Notes/Annotations

    And of couse you can have the layers set up automatically by *importing* an acad dwg...
  7. rocheey

    API problem in 2005?

    >>All good suggestions however I still get the same error. "Sldworks 2005 type library" is already >> selected in references and IActiveDoc2 gave me the >> same error as ActiveDoc. Try a little voodoo here. Bring up the 'References' window again, select the SldWorks.tlb file, and "Browse"...
  8. rocheey

    Sheet metal help

    If it is within a reasonable amount of what SolidWorks thinks it can unfold, then, on the Sheet metal Toolbar, select "Insert bends", and select the face you wish to use as a "base" face for unfolding. If you do this on a part that has nothing to be considered as a "bent" section, Solidworks...
  9. rocheey

    Retrieve Custom Properties Silently?

    >>From previous threads on the subject I learned you cannot access CUSTOM properties and configuration specific properties without opening the file. Its actually possible, but its by no means automatic. Other applications do it; it's more a matter of how many months of development you are...
  10. rocheey

    Searching Access Database from Solidworks VBA

    Its not quite that simple. You have to know the DataBase table set up, and the individual record/field data types. You can then set up queries to return recordsets. The good news is that with VBA, you can often just import a module written in another Office app (Excel, Access) to your SWX...
  11. rocheey

    inserting sketch dimensions in drawing

    SHOW the layers toolbar. There may be layers in use; and the "active" layer may be hidden.
  12. rocheey

    Hole Wizard,

    It could also be that the folder name is actually a file name. Or the Admin has not given you enough privs to that folders.
  13. rocheey

    Assembly level custom props to part docs

    Assembly level custom props to part docs I am trying to (to see if I can) have custom properties, in an assembly, be propagated down thru the part files, *without code* anyone have any tricks? Ill even go from Assy -> dwg-> part if I have to....
  14. rocheey

    holes to slots

    "Quickest way" ? Quickest for you, or ?? Last time I did this, they also decided to go BACK to holes... sometimes. I made the Holes 2 sets of arcs with .0001" flats between them. The CAM software ignored these .0001" amounts when outputting "holes", and correctly identified them "circles"...
  15. rocheey

    API Question: Can you check custom properties w/o activating a part

    While this is possible, it was so much work I consider it more of a 'stunt' than a process. Ive done it on a limited basis, and wouldnt consider the code robust enough to read ANY prop on ANY version, but Ive tweaked it enough to read the props we use at my company, and for the possible...
  16. rocheey

    Reference Component/Configuration in Assy equation?

    Referencing Component/Configuration in Assy equations ... Is this possible? Can I have 2 configurations of a part file, with config-specific dimensions,loaded into an assembly as 2 different components, and drive that dimension in-context from the assembly? (And have each config have a...
  17. rocheey

    Database macros

    Save yourself some clock cycles and use Part.Parameter("").VALUE instead of Part.Parameter("").SystemValue "Value" will return units in your current doc props, except for angular units.
  18. rocheey

    API - counting child parts in assemblies

    I parse assemblies daily to create part nests for Sheet metal manufacturing. The way I personally do it is to return the Path/filename, and referenced configuration, of each component, to see if it matches another. Im not sure Id want to rely on a custom property to decide if a component is...
  19. rocheey

    Equations to suppress fetaures

    But it *does* look like a good place for a Boolean ... and an enhancement request...
  20. rocheey

    Solidworks rummaging thru Outlook address book ?

    TheTick said ... >>It is the performance email. I leave it on, in the interest of helping to improve SW. I guess that must make you a spammer, during beta testing?
Back
Top