Pro/Library: Issue with setting up catalog - SPACES IN FILE NAME LOCATION
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Pro/Library: Issue with setting up catalog - SPACES IN FILE NAME LOCATION
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I'm not sure I fully understand your question. What we do for libraries and templates is to declare them in the config.pro like:
template_sheetmetalpart $LIB\pro_lib\Templates\Creo 2.0\mm_sheetmetal.prt.
Another thing that may help you is to declare a system variable and then call it, assuming you are working on a command window:
set COMMON=%PRO_ROOT%\Creo 2.0\Common Files\%DATECODE%
copy "%COMMON%\text\config.pro"
Note that the call is within "" so the entire string is considered as one text.
I hope it helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I'm not sure I fully understand your question. What we do for libraries and templates is to declare them in the config.pro like:
template_sheetmetalpart $LIB\pro_lib\Templates\Creo 2.0\mm_sheetmetal.prt.
Another thing that may help you is to declare a system variable and then call it, assuming you are working on a command window:
set COMMON=%PRO_ROOT%\Creo 2.0\Common Files\%DATECODE%
copy "%COMMON%\text\config.pro"
Note that the call is within "" so the entire string is considered as one text.
I hope it helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
