Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Progress Meter (repost)

6 REPLIES 6
Reply
Message 1 of 7
hulioman
321 Views, 6 Replies

Progress Meter (repost)

Is there a way to show progress in a routine? I have a routine that currently princs the precentage done from each pass of a repeat. Is there something out there that displays a progress meter at the bottom of the command prompt or something similar? for example (meter 50) would display 50% done. I have seen this with 3rd party softwares...
6 REPLIES 6
Message 2 of 7
Anonymous
in reply to: hulioman

ALLCAPS.LSP from
http://www.turvill.com/t2/free_stuff
will do what you want.

Please don't cross-post.
___

"David K." wrote in message
news:EAA7AC464389A153059925DB185E6468@in.WebX.maYIadrTaRb...
> I'd like to either be able to
> change more than one line of text at a time using a selection set
Message 3 of 7
Anonymous
in reply to: hulioman

Try this.  This is an DCL
example:

 



--
_________________________________
Timothy Spangler

 

"You cannot escape the responsibility of tomorrow by evading it
today"
Abraham Lincoln
_________________________________

 

AutoCAD 2002
WinXP
Compaq Evo W6000
Intel Xeon / 1G RAM


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Is
there a way to show progress in a routine? I have a routine that currently
princs the precentage done from each pass of a repeat. Is there something out
there that displays a progress meter at the bottom of the command prompt or
something similar? for example (meter 50) would display 50% done. I have seen
this with 3rd party softwares...
Message 4 of 7
Anonymous
in reply to: hulioman

Doslib offers that.... Can't tell you much more
than that. But worth checking out.


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Is
there a way to show progress in a routine?
I have a routine that currently
princs the precentage done from each pass of a repeat. Is there something out
there that displays a progress meter at the bottom of the command prompt or
something similar?
  for example (meter 50) would display 50%
done.
I have seen this with 3rd party
softwares...
Message 5 of 7
Anonymous
in reply to: hulioman

Doslib...


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Is
there a way to show progress in a routine? I have a routine that currently
princs the precentage done from each pass of a repeat. Is there something out
there that displays a progress meter at the bottom of the command prompt or
something similar? for example (meter 50) would display 50% done. I have seen
this with 3rd party softwares...
Message 6 of 7
BillZ
in reply to: hulioman

(dos_progbar "title" amount)

Allows you to use the built in AutoCAD progress bar.

Dos_getprogress gives you a modeless box on the screen.

Bill
Message 7 of 7
DParcon
in reply to: hulioman

Try this crude implementation....
(setq num 1000
cnt 0.0
incr (/ 1.0 num)
)
(repeat num
(setq pct (fix (* 100 (setq cnt (+ cnt incr)))))
(princ (strcat "\r" "...Processing..." (itoa pct) "% Done..."))
(rest of your code here.......)
);repeat........Don

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost