Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Editing Dims 1

Status
Not open for further replies.

EdHulse

Industrial
Jan 18, 2005
31
0
0
US
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
 
Replies continue below

Recommended for you

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

[cheers]
Helpful SW websites every user should be aware of faq559-520
How to get answers to your SW questions faq559-1091
 
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
 
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


 
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
 
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


 
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
 
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.

[cheers]
Helpful SW websites every user should be aware of faq559-520
How to get answers to your SW questions faq559-1091
 
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

 
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
 
How do I Disable model changes from drawings? faq559-930

[cheers]
Helpful SW websites every user should be aware of faq559-520
How to get answers to your SW questions faq559-1091
 
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
 
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.

[cheers]
Helpful SW websites every user should be aware of faq559-520
How to get answers to your SW questions faq559-1091
 
Status
Not open for further replies.
Back
Top