×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Editing Dims

Editing Dims

Editing Dims

(OP)
I have a drawing that won't let me edit Ie.... add "2X" or any test to the Dim.  The dims are imported from a model that has several configs.  

Any help?

Ed Hulse
Sr. Designer/DBWorks Admin

RE: Editing Dims

Is the file set to Read Only?
Is it a SW file (.slddrw)?
Do you also have the associated models?


Helpful SW websites every user should be aware of FAQ559-520
How to get answers to your SW questions  FAQ559-1091

RE: Editing Dims

(OP)
1. no
2. yes
3. yes that has several configs

If you double click and try to change the length it says something about active config.

2005 SP4.0

Ed Hulse
Sr. Designer/DBWorks Admin

RE: Editing Dims

What release and service pack are you running?  I had that happen to me in an earlier 2005 SP but it was fixed in SP 4.0

Best Regards,

Heckler
Sr. Mechanical Engineer
SW2005 SP 4.0 & Pro/E 2001
Dell Precision 370
P4 3.6 GHz, 1GB RAM
XP Pro SP2.0
NIVIDA Quadro FX 1400
      o
  _`\(,_
(_)/ (_)

Just because I'm paranoid doesn't mean that they aren't out to get me.

- Woody Allen

 

RE: Editing Dims

(OP)
Manually putting them in is the way I do it....but this is a co-worker that has to have them improted, so he thinks.  

Ed Hulse
Sr. Designer/DBWorks Admin

RE: Editing Dims

Ed,

Check this thread I started when I was having the problem
thread559-120509

Best Regards,

Heckler
Sr. Mechanical Engineer
SW2005 SP 4.0 & Pro/E 2001
Dell Precision 370
P4 3.6 GHz, 1GB RAM
XP Pro SP2.0
NIVIDA Quadro FX 1400
      o
  _`\(,_
(_)/ (_)

Just because I'm paranoid doesn't mean that they aren't out to get me.

- Woody Allen

 

RE: Editing Dims

If it says you can only modify the active configuration, then it isn't a driven dimension.  Try right-clicking it and picking "driven".  You should now be able to modify it.

Flores
SW 2005 SP 4.0

RE: Editing Dims

Instead of changing the dimension state (Driven vs Driving), just activate the configuration you are trying to change. You should then be able to do the changes.


Helpful SW websites every user should be aware of FAQ559-520
How to get answers to your SW questions  FAQ559-1091

RE: Editing Dims

Ed,

If the dim is imported from the model, edit the dim in the model and add the "2x" text after the <DIM>. This will show on the drawing.

Jeff

RE: Editing Dims

This is an example of the macro code I use to make the configuration the active without having to search and  without leaving the drawing (you must first select the view):
 

CODE

Set SelMgr = Model2.SelectionManager
Count = SelMgr.GetSelectedObjectCount

If Count <> 1 Then
 swApp.SendMsgToUser "PLEASE SELECT ONE VIEW."
 
 Exit Sub
End If
Dim configname As String

Set selview = SelMgr.GetSelectedObject5(1)
configname = selview.ReferencedConfiguration
viewpath = selview.GetReferencedModelName
If (LCase(Right(viewpath, 3)) = "prt") Then
swtype = swDocPART
Else
swtype = swDocASSEMBLY
End If

Set Part = swApp.OpenDoc6(viewpath, swtype, 0, configname, e, w)
partitle = Part.GetTitle
Part.ShowConfiguration2 (configname)
retval = Part.Save3(swOpenDocOptions_Silent, e, w)
swApp.CloseDoc partitle

Model2.EditRebuild3
Set Part = Nothing

RE: Editing Dims

Isn't there a setting that is toggled during install for "Allow model edit from drawing" or something like that?

I could be the world's greatest underachiever, if I could just learn to apply myself.
http://www.EsoxRepublic.com-SolidWorks API VB programming help

RE: Editing Dims

How do I Disable model changes from drawings?  FAQ559-930


Helpful SW websites every user should be aware of FAQ559-520
How to get answers to your SW questions  FAQ559-1091

RE: Editing Dims

(OP)
That is set right....it has to do with active configs.  The Drafter having the problems has found a work around....editing the model dims to get text like "2X", and manually putting dims in.

Ed Hulse
Sr. Designer/DBWorks Admin

RE: Editing Dims

If you make the model configuration being worked on, active, (ie. either open it for viewing, or save it while that config is viewable), then you won't have to manually insert the dimensions.


Helpful SW websites every user should be aware of FAQ559-520
How to get answers to your SW questions  FAQ559-1091

RE: Editing Dims

(OP)
I will have him try that

Ed Hulse
Sr. Designer/DBWorks Admin

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources