Author Topic: surpressing a dialogue box problem  (Read 2453 times)

0 Members and 1 Guest are viewing this topic.

diarmuid

  • Bull Frog
  • Posts: 417
surpressing a dialogue box problem
« on: November 14, 2006, 07:03:03 AM »
Howdy folks,

We use a 3d add on package here called 3d+  (through AutocCAD 2007).  it’s a structural steel package.  We have 50 models or so done with this package.  We now need to export these files every night.  That’s not a problem, we set up a task and get it to run everynight.  I’ve written a lisp that will export those files in SDNF format (it’s a structural steel version of DXF format).  The only problem that I am having is that I unable to suppress the dialogue boxes that pop up.  (I have cmddia and filedia variables set to zero) but, they wont suppress goddam it,  its the 3d+ packages dialogue box.  is it possible in a lisp routine to accommodate the appearance of dialogue boxes?

Thanks in advance

Diarmuid
If you want to win something run the 100m, if you want to experience something run a marathon

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Re: surpressing a dialogue box problem
« Reply #1 on: November 14, 2006, 08:42:09 AM »
Not likely. You should contact the software designer for help in that.
They would have to provide a variable to switch off or on the dialog boxed.
Or a direct call to a subroutine that skips the dialog.

my2cents
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

diarmuid

  • Bull Frog
  • Posts: 417
Re: surpressing a dialogue box problem
« Reply #2 on: November 16, 2006, 11:32:16 AM »
thanks guys,  i have been on to the software people and they are looking into it.
If you want to win something run the 100m, if you want to experience something run a marathon

Guest

  • Guest
Re: surpressing a dialogue box problem
« Reply #3 on: November 16, 2006, 12:02:52 PM »
Maybe add a - before the command name?  Kinda like AutoCAD's -layer command.  Probably won't work, but it's worth a shot.

Andrea

  • Water Moccasin
  • Posts: 2372
Re: surpressing a dialogue box problem
« Reply #4 on: November 18, 2006, 02:37:09 PM »
don't know about your 3rtd party tool...

but...

1) can you start AutoCAd without it ?
2) is there any ARX, LISP, FAS or something else to load to use file exportation ?
3) is there any DCL file for this program or do you think that is VBA module ?

Keep smile...

diarmuid

  • Bull Frog
  • Posts: 417
Re: surpressing a dialogue box problem
« Reply #5 on: November 20, 2006, 04:18:20 AM »
thanks for the help.

adding a - to the front of the command doesnt work. i have set the "filedia" and "cmddia" vaiable to aero.

Andrea:  thanks for you help, i'll try to answer the the points.

1. No.  this software runs within autocad, and allows me to "export to SDNF"
2. I dont' think so. but i will check.
3. As far as i know, it is a DCL file.

Thanks
If you want to win something run the 100m, if you want to experience something run a marathon

Andrea

  • Water Moccasin
  • Posts: 2372
Re: surpressing a dialogue box problem
« Reply #6 on: November 20, 2006, 10:40:51 AM »
thanks for the help.

adding a - to the front of the command doesnt work. i have set the "filedia" and "cmddia" vaiable to aero.

Andrea:  thanks for you help, i'll try to answer the the points.

1. No.  this software runs within autocad, and allows me to "export to SDNF"
2. I dont' think so. but i will check.
3. As far as i know, it is a DCL file.

Thanks

Ok.,...so maybe it's a ARX  FAS or simple LISP..
if its a LSP file....you can edit it...and try to retreive the
Variable getted from the DCL file.
Keep smile...

diarmuid

  • Bull Frog
  • Posts: 417
Re: surpressing a dialogue box problem
« Reply #7 on: November 20, 2006, 11:38:08 AM »
thanks

i'll look into it and see how i get on.

i'll post back if if i get any results

thanks
If you want to win something run the 100m, if you want to experience something run a marathon