Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations LittleInch on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Automatic save option

  • Thread starter Thread starter venu2citd
  • Start date Start date
V

venu2citd

Guest
Hi,


Can I set automatic save option in Proe too as Word Do..





Thanks in advance,


Venu
 
Automatic saving is not an option in Pro/E since every save
creates a new file, while leaving the original file intact.
If you had auto save and accidentally left the machine on
for an extended time you would fill the hard drive.
 
I suggest making a macro linked to one of your function keys. After every few actions in Pro/e or just every few minutes, just tap the key and you're done. Trust me when I say that it will become virtually automatic really quickly.
 
I have a mapkey that both saves and deletes old versions too, helps with the filling up the hard drive problem.
 
the big problem is just the philosophy of how Pro-E saves things.

the act of saving a copy each and every time a user hits save may seem like a good idea. and maybe it was back when Pro-E was first developed on Unix machines. but now, it just seems silly to do this.

as the good Doctor suggested, make a mapkey that saves and purges at the same time and you effectively create an autosave while also removing any of the alleged benefit of having a backup copy created. I was instructed by a PTC trainer to create this very mapkey back when I first took training on Pro-E in 1997. so a PTC trained trainer is telling me to override the "safety" feature built into Pro-E? silly.

now, with windchill, I have the ability to go back to previous revisions more easily anyway so the local copies for me are useless anyway.
 
dr_gallup said:
I have a mapkey that both saves and deletes old versions too, helps with the filling up the hard drive problem.

Please share with the rest of the class.
 
mapkey $F11 @MAPKEY_NAMESaves and purges the active\\nobject;\
mapkey(continued) @MAPKEY_LABELSAVE AND PURGE;~ Select `main_dlg_cur` `MenuBar1`1 `File`;\
mapkey(continued) ~ Close `main_dlg_cur` `MenuBar1`;~ Activate `main_dlg_cur` `File.psh_save`;\
mapkey(continued) ~ Activate `file_saveas` `Current Dir`;~ Activate `file_saveas` `OK`;\
mapkey(continued) ~ Select `main_dlg_cur` `MenuBar1`1 `File`;\
mapkey(continued) ~ Select `main_dlg_cur` `File.cb_file_delete`;\
mapkey(continued) ~ Close `main_dlg_cur` `MenuBar1`;\
mapkey(continued) ~ Close `main_dlg_cur` `File.cb_file_delete`;\
mapkey(continued) ~ Activate `main_dlg_cur` `psh_purge`;;
 

Part and Inventory Search

Sponsor

Back
Top