Author Topic: Checklist Box  (Read 2722 times)

0 Members and 1 Guest are viewing this topic.

MSTG007

  • Gator
  • Posts: 2606
  • I can't remeber what I already asked! I need help!
Checklist Box
« on: January 12, 2005, 10:09:24 PM »
Is there a way per each dwg. to have a check list box...

What I mean is this.

If I have 3 different drawings. With Different steps to complete each drawing. That this vba check list box or what ever would be embeded into the drawing so anyone could see where you left off and what you still have to complete.

What I am seeing

_=Drawing 1
___Border
___Legend
___Turn on Layers
___and Be more Specific


_=Drawing 2
___Border
___Details
___Maps
___More Specific



But the check list would work with the current users drawing which is trying to be completed.

Would this be a wise thing to have? or a waste of time?
Civil3D 2020

Jimmy D

  • Guest
Checklist Box
« Reply #1 on: January 13, 2005, 09:51:39 AM »
You could make a check list box with VBA and make it visible with a button on the toolbar. The data can be stored in the drawing (invisible attributes) or in a separate file.

Jimmy

M-dub

  • Guest
Checklist Box
« Reply #2 on: January 13, 2005, 03:55:56 PM »
If it's a note to the next draftsperson, on occasion, I've used notes that are placed on a DONT_PLOT layer.  Put it in MTEXT across the whole drawing in large font if it's really important.  That way, they have NO EXCUSE for "missing it".  Sure, it's cheap and dirty, but it works. ;)

SMadsen

  • Guest
Checklist Box
« Reply #3 on: January 13, 2005, 05:10:02 PM »
Could be done fairly easy with dictionaries. "Fairly easy" not in the sense of a quickly written project but merely being straightforward coding.

MSTG007

  • Gator
  • Posts: 2606
  • I can't remeber what I already asked! I need help!
Checklist Box
« Reply #4 on: January 13, 2005, 06:41:54 PM »
what does the CAD standard in acad do....  would that be something to look at?
Civil3D 2020

Dommy2Hotty

  • Swamp Rat
  • Posts: 1127
Re: Checklist Box
« Reply #5 on: November 14, 2008, 11:38:39 AM »
So, has anybody taken a stab at this one?  I've been thinking of it for a while, just no time to code.

GDF

  • Water Moccasin
  • Posts: 2081
Re: Checklist Box
« Reply #6 on: November 14, 2008, 12:31:15 PM »
;;;Message Service            (c)2001, John R. Fair III;  $50 Bonus Winner

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;    Message.lsp is a program to store and retrieve       
;;; information about a drawing.  Use it to save notes to   
;;; yourself or others, information about "odd" non-standard
;;; things you were asked to do to a drawing.  Saves right in
;;; the drawing, retrieve the message the next day, next week
;;; or next year.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Why is there never enough time to do it right, but always enough time to do it over?
BricsCAD 2020x64 Windows 10x64

Dommy2Hotty

  • Swamp Rat
  • Posts: 1127
Re: Checklist Box
« Reply #7 on: November 14, 2008, 01:05:50 PM »
Ahhh...thank you very much.

If anyone wants to modify this to show 1 check box that retains it's value on exit (just as a sample I can follow for my own use), that would be super!

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Re: Checklist Box
« Reply #8 on: November 15, 2008, 09:45:34 AM »
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.

Dommy2Hotty

  • Swamp Rat
  • Posts: 1127
Re: Checklist Box
« Reply #9 on: November 17, 2008, 11:16:18 AM »