a few questions
a few questions
(OP)
alright, I have a few things that are not working for me.
1) I want and understand how to change drafting sheet properties in admin mode, but I need "write access" on CATcollectionstandard and CATreferancesettingpath. I can find these directories easily in the catia environment editor but what do i do from there to give me "write access?"
2) when dimensioning in the drafting workbench The dimension tool defaults to NUM.DIMM, or dimensioning in mm. I want mine in inches. How do I hard set it to the NUM.DINC?
1) I want and understand how to change drafting sheet properties in admin mode, but I need "write access" on CATcollectionstandard and CATreferancesettingpath. I can find these directories easily in the catia environment editor but what do i do from there to give me "write access?"
2) when dimensioning in the drafting workbench The dimension tool defaults to NUM.DIMM, or dimensioning in mm. I want mine in inches. How do I hard set it to the NUM.DINC?





RE: a few questions
Wes C.
------------------------------
No trees were killed in the sending of this message, but a large number of electrons were terribly inconvenienced.
RE: a few questions
http://www.catiacommunity.com/
Registration is required but it is free.
Go to the -Tips & trick section
Tip- Save Yourself a Headache! Use this Tip!
Thanks
RE: a few questions
Probably you already checked FAQ section....http://www.eng-tips.com/faqs.cfm?fid=1179
If you are working in an organization where you do not have write acces (because you are just an user, not an administrator), you can use next CATScript.
Sub CATMain()
Dim drawingDocument1 As DrawingDocument
Set drawingDocument1 = CATIA.ActiveDocument
Dim selection1 As Selection
Set selection1 = drawingDocument1.Selection
selection1.Search "CATDrwSearch.DrwDimension,all"
For i = 1 To selection1.Count
Dim Dimension1 As DrawingDimension
Set Dimension1 = selection1.Item(i).Value
Dim DimDimValue As DrawingDimValue
Set DimDimValue = Dimension1.GetValue
DimDimValue.SetFormatName 1, "NUM.DINC"
Next
selection1.Clear
End Sub
Regards
Fernando
RE: a few questions
RE: a few questions
Again, a training would be very good...
Regards
Fernando
RE: a few questions
Normally these admin functions are for Catia-admin peoples who should be familiar with the settings environment etc. because -admin may effect the Catia settings in your whole company level!
You should first create a proper settings environment of your own - not to change the original settings. Be familiar with Catia environment settings and starting options.
You can start learnig by using Catia help and searching by keyword "-admin".