Author Topic: AutoCAD Etransmit  (Read 3316 times)

0 Members and 1 Guest are viewing this topic.

Andrea

  • Water Moccasin
  • Posts: 2372
AutoCAD Etransmit
« on: November 03, 2016, 12:25:08 PM »
Hi all,..

is there any variable  than I dont know to make a Etrasmit without save ?

Thank you.
Keep smile...

ChrisCarlson

  • Guest
Re: AutoCAD Etransmit
« Reply #1 on: November 03, 2016, 12:55:45 PM »
Don't think so, eTransmit includes the actual .dwg file within the folder, not the specific temporary file created when you publish the .dwg file to an email.

Andrea

  • Water Moccasin
  • Posts: 2372
Re: AutoCAD Etransmit
« Reply #2 on: November 03, 2016, 01:05:00 PM »
Don't think so, eTransmit includes the actual .dwg file within the folder, not the specific temporary file created when you publish the .dwg file to an email.

I understand that,....So why asking the question if it do not run without saving ?
the fact is that many users have fields or some program updating drawing data when open a drawing..
like current date, vaiables fields, username, path location, attached OLe Object etc...then the DBMOD is affected.,,
but who care...All I want is to use the actual saved DWG file and ship it to the client...

the question of Etransmit must be : "ETRANSMIT CAN'T PROCEED IF THE DRAWING IS NOT SAVED"...then STOP the process..
but it ask if we want to save the drawing and propose YES or NO.
Keep smile...

Rob...

  • King Gator
  • Posts: 3824
  • Take a little time to stop and smell the roses.
Re: AutoCAD Etransmit
« Reply #3 on: November 03, 2016, 01:25:43 PM »
It's just a notification that there may be changes that haven't been saved, yet.

What if someone other than the person doing the etransmit had made changes that need to be included but haven't saved the file yet?
CAD Tech

Andrea

  • Water Moccasin
  • Posts: 2372
Re: AutoCAD Etransmit
« Reply #4 on: November 03, 2016, 04:59:08 PM »
It's just a notification that there may be changes that haven't been saved, yet.

What if someone other than the person doing the etransmit had made changes that need to be included but haven't saved the file yet?

Solution:
warn user but ask him if he want to proceed or not
 "Warning !!   This Drawind is not saved yet, do you whish to make an Etransmit anyways ?"

or even better,,,
Code: [Select]
(if (/= (getvar 'DBMOD) 0)
(progn
(initget 1 "Yes No")
(if (eq "Yes" (setq x (getkword "This Drawing is not saved yet, do you wish to continue ? <Yes No> :")))
  (command "._-ETRANSMIT")
  (princ "\nThank you")
  )
)
  (command "._-ETRANSMIT")
  )
Keep smile...

lamarn

  • Swamp Rat
  • Posts: 636
Re: AutoCAD Etransmit
« Reply #5 on: November 04, 2016, 04:25:22 AM »
It can be annoying if there is a lisp or script running for batch processing. But what version of Autocad are you actually using? I think this option 'would you like to save it?' ..Btw What is the default?  was introduced somewhere in 2016..
Design is something you should do with both hands. My 2d hand , my 3d hand ..

ChrisCarlson

  • Guest
Re: AutoCAD Etransmit
« Reply #6 on: November 04, 2016, 08:04:50 AM »
Is there a reason you cannot save the file?

steve.carson

  • Newt
  • Posts: 108
Re: AutoCAD Etransmit
« Reply #7 on: November 04, 2016, 12:54:20 PM »
I always etransmit from a sheetset without the drawings open to avoid the save issue.

rkmcswain

  • Swamp Rat
  • Posts: 978
Re: AutoCAD Etransmit
« Reply #8 on: November 06, 2016, 07:40:13 PM »
Is there a reason you cannot save the file?

Probably this.

Quote from: Andrea
All I want is to use the actual saved DWG file and ship it to the client...




This is similar to how C3D acts when you want to crop a surface. It forces you to save, and 99% of the time I don't want to save.   :tickedoff:


ChrisCarlson

  • Guest
Re: AutoCAD Etransmit
« Reply #9 on: November 07, 2016, 08:23:54 AM »
If you are just doing an eTransmit on an existing drawing, you might be able to trick the program with acad-push-dbmod/acad-pop-dbmod.

Daniel J. Ellis

  • Swamp Rat
  • Posts: 811
Re: AutoCAD Etransmit
« Reply #10 on: November 08, 2016, 08:47:46 AM »
I think this is the scenario you want to achieve:
Open drawing
Make changes
Do an etransmit
Have the etransmitted file reflect the changes you've made, but the one you originally opened will be unchanged.

Clicking "no" at the save prompt WILL achieve this.

dJE
===
dJE