Author Topic: eTransmit  (Read 1263 times)

0 Members and 1 Guest are viewing this topic.

ChrisCarlson

  • Guest
eTransmit
« on: May 21, 2018, 04:59:55 PM »
I'm sure it's a simple explanation but what sysvar could have changed that is causing AutoCAD to ignore the file name argument? When I pass this command the dialog window has started to pop up.

Code - Auto/Visual Lisp: [Select]
  1. (vl-cmdf "_.-etransmit" "_c" (strcat (getvar 'dwgprefix)(vl-filename-base (getvar 'dwgname))".zip"))

cmwade77

  • Swamp Rat
  • Posts: 1449
Re: eTransmit
« Reply #1 on: May 21, 2018, 06:41:35 PM »
Strange, it works for me, but try this:

Code: [Select]
(setvar "cmdecho" 1)
(command "_.-etransmit" "_c" (strcat (getvar 'dwgprefix)(vl-filename-base (getvar 'dwgname))".zip"))

You can at least see what is happening with the command prompt this way (press F2 if you don't see everything), perhaps it will make it more apparent what is happening.

ChrisCarlson

  • Guest
Re: eTransmit
« Reply #2 on: May 22, 2018, 08:42:00 AM »
Code: [Select]
Command: (setvar "cmdecho" 1)
1

Command: (command "_.-etransmit" "_c" (strcat (getvar 'dwgprefix)(vl-filename-base (getvar 'dwgname))".zip"))
_.-etransmit
Updating fields...
133 field(s) found
133 field(s) updated
Enter an option [Create transmittal package/Report only/CUrrent setup/CHoose setup] <Report only>: _c
Gathering files ...

Command: C:\Users\Chris\Desktop\Test\Test1.zip Unknown command "ZIP".  Press F1 for help.

Command: nil

It's almost like it doesn't see the filename argument as being a valid option. I did confirm it's limited to my installation, the troubleshooting process continues.

With "FILEDIA" set to "0", it works as expected but setting it back to the default of "1" brings the popup dialog.
« Last Edit: May 22, 2018, 09:06:24 AM by Master_Shake »

ChrisCarlson

  • Guest
Re: eTransmit
« Reply #3 on: May 22, 2018, 09:22:46 AM »
Resorted to a reset to default settings which have appeared to resolve this issue  :idiot2: