Daily AutoCAD has reached 100,000 visitors!
Print This Post
![]() |
Author | Orhan Toker |
| Profession | Architect M.Sc. | |
| Autodesk Authorized Consultant | ||
| Database Specialist | ||
Our blog, which was launched on November 2006, has reached 100,000 visitors last week. It is very honourable for us that our blog, for which 8 expert authors are writing about educational purposes about AutoCAD and AutoLISP, has reached 100,000 visitors, a google page ranking of 4/10 and entered first 500,000 in Technorati portal in such a short time.
Shaan Hurley from Between the Lines played a huge role to help us us to be able to come to this stage. Thanks very much for his endless support since the day that we started our website. Of course, we must thank our visitors also.
Everybody, thank you very much.
Similar Posts
Rate this article:


May 7th, 2007 10:28
Congratulations!
I refer to the hits from a BTL mention “getting Shaaned”.
May 8th, 2007 04:44
Congratulations Daily AutoCAD!
You have proven to be a very valuable resource to AutoCAD users all over the world.
Thank you and continued success.
Shaan Hurley
July 21st, 2007 20:14
Hello
I have visited your website several times and browsed. It looks like a site where if a person had time they could pickup on something (autolisp in my case). I have been looking for resolution to an autolisp file. I looked around but I could not find any sites that come up with a resolution.
This is what I am trying to accomplish:
1. First, have partial menu loaded at all times, called - BASEMENU.
2. When I click on my “BASEMENU” partial menu, the button would be called “MENUS”.
3. When I click on “MENUS” under “BASEMENUS” a dialog box appears.
4. In this dialog box is a list of other partial menus.
5. When double clicking on the name of menu that partial menu loads, the basemenu is still loaded
but if any other partial menu is loaded it will unload.
6. The dialog box disappears.
I have the autolisp and dcl files that control this function. I have them where there the dialog box
appears with the names of the menus.
Here is a copy of the autlisp code:
———————————————————————–
(defun C:mgr ()
;define function
(setq NAMES ‘(”Basemenu” “2D Architectural” “3D Architectural” “Process P&ID”
“2D Piping” “3D Piping”)
);setq
;define list
(setq dcl_id (load_dialog “manager.dcl”))
;load dialog
(if (not (new_dialog “manager” dcl_id)
;test for dialog
);not
(exit)
;exit if no dialog
);if
(start_list “selections”)
;start the list box
(mapcar ‘add_list NAMES)
;fill the list box
(end_list)
;end list
(action_tile
“accept”
;if O.K. pressed
(strcat
;string ‘em together
“(progn
(setq SIZ (atof (get_tile \”selections\”)))”
;get list selection
“(done_dialog) (setq userclick T))”
;close dialog
);strcat
);action tile
(action_tile
“cancel”
;if cancel button pressed
“(done_dialog) (setq userclick nil)”
;close dialog
);action_tile
(start_dialog)
;start dialog
(unload_dialog dcl_id)
;unload
(if userclick
;check O.K. was selected
(progn
;if it was do the following
(setq SIZ (fix SIZ))
;convert to integer
(setq SIZ (nth SIZ NAMES))
;get the Day
(alert (strcat “You Selected: ” SIZ))
;display the Day
);progn
);if userclick
(princ)
);defun
(princ)
———————————————————————–
I know it missing some variables at key points but I do not know which and where. If you would like a copy of the dcl file please feel free and email me.