AutoCAD Architecture Customization
Welcome to Autodesk’s AutoCAD Architecture Customization Forums. Share your knowledge, ask questions, and explore popular AutoCAD Architecture Customization topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Drawing Scale Variable

16 REPLIES 16
Reply
Message 1 of 17
Anonymous
726 Views, 16 Replies

Drawing Scale Variable

I would like to create a custom command for text and dims which uses the
Drawing Scale value to set the appropriate text height and dim scale. Does
anyone know how I can access the Drawing Scale value in a lisp routine? Any
help would be greatly appreciated!

George Wharton
16 REPLIES 16
Message 2 of 17
Anonymous
in reply to: Anonymous

ADT 3

(defun SA:AecTextHeight (/ TH)
(setq TH (CDR (ASSOC 42 (dictsearch (cdar (dictsearch (namedobjdict)
"aec_vars")) "aec_vars_dwg_setup"))))
TH
)
(defun SA:AecScale (/ ds)
(setq ds (CDR (ASSOC 40 (dictsearch (cdar (dictsearch (namedobjdict)
"aec_vars")) "aec_vars_dwg_setup"))))
ds
)

(defun SA:AecCurrentLayerKey (/ lk)
(setq lk (cdr (assoc 9 (dictsearch (cdar (dictsearch (namedobjdict)
"aec_vars")) "aec_vars_dwg_setup"))))
lk
)

ADT 2
(defun SA:AecTextHeight (/ TH)
(setq TH (cdr(assoc 42 (entget(cdr(car(reverse(dictsearch (namedobjdict)
"AEC_VARS")))))))
TH
)
(defun SA:AecScale (/ ds)
(setq ds (cdr(assoc 40 (entget(cdr(car(reverse(dictsearch (namedobjdict)
"AEC_VARS"))))))))
ds
)

(defun SA:AecCurrentLayerKey (/ lk)
(setq lk (cdr (assoc 9 (entget (cdr (car (reverse (dictsearch
(namedobjdict) "aec_vars")))))))
lk
)

CJ




"George Wharton" wrote in message
news:189357A97BBA3734BEA84193F012B4CB@in.WebX.maYIadrTaRb...
> I would like to create a custom command for text and dims which uses the
> Drawing Scale value to set the appropriate text height and dim scale. Does
> anyone know how I can access the Drawing Scale value in a lisp routine?
Any
> help would be greatly appreciated!
>
> George Wharton
>
>
Message 3 of 17
Anonymous
in reply to: Anonymous

Thanks CJ this worked great. I had to change (defun SA: to (defun c: and
then it worked fine. Where can I find more info on these "aec_vars"?

George Wharton
ADT2i

"CJ Follmer" wrote in message
news:B1C982FE14BF114B8DF615A1CB7681C6@in.WebX.maYIadrTaRb...
> ADT 3
>
> (defun SA:AecTextHeight (/ TH)
> (setq TH (CDR (ASSOC 42 (dictsearch (cdar (dictsearch (namedobjdict)
> "aec_vars")) "aec_vars_dwg_setup"))))
> TH
> )
> (defun SA:AecScale (/ ds)
> (setq ds (CDR (ASSOC 40 (dictsearch (cdar (dictsearch (namedobjdict)
> "aec_vars")) "aec_vars_dwg_setup"))))
> ds
> )
>
> (defun SA:AecCurrentLayerKey (/ lk)
> (setq lk (cdr (assoc 9 (dictsearch (cdar (dictsearch (namedobjdict)
> "aec_vars")) "aec_vars_dwg_setup"))))
> lk
> )
>
> ADT 2
> (defun SA:AecTextHeight (/ TH)
> (setq TH (cdr(assoc 42 (entget(cdr(car(reverse(dictsearch (namedobjdict)
> "AEC_VARS")))))))
> TH
> )
> (defun SA:AecScale (/ ds)
> (setq ds (cdr(assoc 40 (entget(cdr(car(reverse(dictsearch (namedobjdict)
> "AEC_VARS"))))))))
> ds
> )
>
> (defun SA:AecCurrentLayerKey (/ lk)
> (setq lk (cdr (assoc 9 (entget (cdr (car (reverse (dictsearch
> (namedobjdict) "aec_vars")))))))
> lk
> )
>
> CJ
>
>
>
>
> "George Wharton" wrote in message
> news:189357A97BBA3734BEA84193F012B4CB@in.WebX.maYIadrTaRb...
> > I would like to create a custom command for text and dims which uses the
> > Drawing Scale value to set the appropriate text height and dim scale.
Does
> > anyone know how I can access the Drawing Scale value in a lisp routine?
> Any
> > help would be greatly appreciated!
> >
> > George Wharton
> >
> >
>
>
Message 3 of 17
Anonymous
in reply to: Anonymous

Will this work for ADT 2.0 as well?
Message 3 of 17
Anonymous
in reply to: Anonymous

CJ

your SA:AecTextHeight funciton is missing a paren so it will not work.

--
-------------------------------------------------------------------------
Rob Starz
Plogv 3.0 & 2000 (plot logging) for r14 & 2000
***Enhancement Tools for Arch. Desktop *****
!!!!!Beta Testers Needed For DormerX!!!!!!!
http://www.stardsign.com/DormerXForm.htm
http://www.stardsign.com/main.htm
"CJ Follmer" wrote in message
news:B1C982FE14BF114B8DF615A1CB7681C6@in.WebX.maYIadrTaRb...
> ADT 3
>
> (defun SA:AecTextHeight (/ TH)
> (setq TH (CDR (ASSOC 42 (dictsearch (cdar (dictsearch (namedobjdict)
> "aec_vars")) "aec_vars_dwg_setup"))))
> TH
> )
> (defun SA:AecScale (/ ds)
> (setq ds (CDR (ASSOC 40 (dictsearch (cdar (dictsearch (namedobjdict)
> "aec_vars")) "aec_vars_dwg_setup"))))
> ds
> )
>
> (defun SA:AecCurrentLayerKey (/ lk)
> (setq lk (cdr (assoc 9 (dictsearch (cdar (dictsearch (namedobjdict)
> "aec_vars")) "aec_vars_dwg_setup"))))
> lk
> )
>
> ADT 2
> (defun SA:AecTextHeight (/ TH)
> (setq TH (cdr(assoc 42 (entget(cdr(car(reverse(dictsearch (namedobjdict)
> "AEC_VARS")))))))
> TH
> )
> (defun SA:AecScale (/ ds)
> (setq ds (cdr(assoc 40 (entget(cdr(car(reverse(dictsearch (namedobjdict)
> "AEC_VARS"))))))))
> ds
> )
>
> (defun SA:AecCurrentLayerKey (/ lk)
> (setq lk (cdr (assoc 9 (entget (cdr (car (reverse (dictsearch
> (namedobjdict) "aec_vars")))))))
> lk
> )
>
> CJ
>
>
>
>
> "George Wharton" wrote in message
> news:189357A97BBA3734BEA84193F012B4CB@in.WebX.maYIadrTaRb...
> > I would like to create a custom command for text and dims which uses the
> > Drawing Scale value to set the appropriate text height and dim scale.
Does
> > anyone know how I can access the Drawing Scale value in a lisp routine?
> Any
> > help would be greatly appreciated!
> >
> > George Wharton
> >
> >
>
>
Message 6 of 17
Anonymous
in reply to: Anonymous

Not documented for Visual Lisp, but it is for VBA.

Cheers,

Peter Funk
API Product Manager
Building Industry Group
Autodesk, Inc.
Message 6 of 17
Anonymous
in reply to: Anonymous

oops, the adt 2's were written more on the fly. thanks rob.

"Rob Starz" wrote in message
news:39DA26CB77C1F43C20AF54479242DF0A@in.WebX.maYIadrTaRb...
> CJ
>
> your SA:AecTextHeight funciton is missing a paren so it will not work.
>
> --
> -------------------------------------------------------------------------
> Rob Starz
> Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> ***Enhancement Tools for Arch. Desktop *****
> !!!!!Beta Testers Needed For DormerX!!!!!!!
> http://www.stardsign.com/DormerXForm.htm
> http://www.stardsign.com/main.htm
> "CJ Follmer" wrote in message
> news:B1C982FE14BF114B8DF615A1CB7681C6@in.WebX.maYIadrTaRb...
> > ADT 3
> >
> > (defun SA:AecTextHeight (/ TH)
> > (setq TH (CDR (ASSOC 42 (dictsearch (cdar (dictsearch (namedobjdict)
> > "aec_vars")) "aec_vars_dwg_setup"))))
> > TH
> > )
> > (defun SA:AecScale (/ ds)
> > (setq ds (CDR (ASSOC 40 (dictsearch (cdar (dictsearch (namedobjdict)
> > "aec_vars")) "aec_vars_dwg_setup"))))
> > ds
> > )
> >
> > (defun SA:AecCurrentLayerKey (/ lk)
> > (setq lk (cdr (assoc 9 (dictsearch (cdar (dictsearch (namedobjdict)
> > "aec_vars")) "aec_vars_dwg_setup"))))
> > lk
> > )
> >
> > ADT 2
> > (defun SA:AecTextHeight (/ TH)
> > (setq TH (cdr(assoc 42 (entget(cdr(car(reverse(dictsearch
(namedobjdict)
> > "AEC_VARS")))))))
> > TH
> > )
> > (defun SA:AecScale (/ ds)
> > (setq ds (cdr(assoc 40 (entget(cdr(car(reverse(dictsearch
(namedobjdict)
> > "AEC_VARS"))))))))
> > ds
> > )
> >
> > (defun SA:AecCurrentLayerKey (/ lk)
> > (setq lk (cdr (assoc 9 (entget (cdr (car (reverse (dictsearch
> > (namedobjdict) "aec_vars")))))))
> > lk
> > )
> >
> > CJ
> >
> >
> >
> >
> > "George Wharton" wrote in message
> > news:189357A97BBA3734BEA84193F012B4CB@in.WebX.maYIadrTaRb...
> > > I would like to create a custom command for text and dims which uses
the
> > > Drawing Scale value to set the appropriate text height and dim scale.
> Does
> > > anyone know how I can access the Drawing Scale value in a lisp
routine?
> > Any
> > > help would be greatly appreciated!
> > >
> > > George Wharton
> > >
> > >
> >
> >
>
>
Message 6 of 17
Anonymous
in reply to: Anonymous

oh this question should get rob started again with ADN? :_)
actually , we found out by analysis.
change a setting and see what gets changed.
it is not documented, unless you belong to the club!


George Wharton wrote:
>
> Thanks CJ this worked great. I had to change (defun SA: to (defun c: and
> then it worked fine. Where can I find more info on these "aec_vars"?
>
> George Wharton
> ADT2i
>
> "CJ Follmer" wrote in message
> news:B1C982FE14BF114B8DF615A1CB7681C6@in.WebX.maYIadrTaRb...
> > ADT 3
> >
> > (defun SA:AecTextHeight (/ TH)
> > (setq TH (CDR (ASSOC 42 (dictsearch (cdar (dictsearch (namedobjdict)
> > "aec_vars")) "aec_vars_dwg_setup"))))
> > TH
> > )
> > (defun SA:AecScale (/ ds)
> > (setq ds (CDR (ASSOC 40 (dictsearch (cdar (dictsearch (namedobjdict)
> > "aec_vars")) "aec_vars_dwg_setup"))))
> > ds
> > )
> >
> > (defun SA:AecCurrentLayerKey (/ lk)
> > (setq lk (cdr (assoc 9 (dictsearch (cdar (dictsearch (namedobjdict)
> > "aec_vars")) "aec_vars_dwg_setup"))))
> > lk
> > )
> >
> > ADT 2
> > (defun SA:AecTextHeight (/ TH)
> > (setq TH (cdr(assoc 42 (entget(cdr(car(reverse(dictsearch (namedobjdict)
> > "AEC_VARS")))))))
> > TH
> > )
> > (defun SA:AecScale (/ ds)
> > (setq ds (cdr(assoc 40 (entget(cdr(car(reverse(dictsearch (namedobjdict)
> > "AEC_VARS"))))))))
> > ds
> > )
> >
> > (defun SA:AecCurrentLayerKey (/ lk)
> > (setq lk (cdr (assoc 9 (entget (cdr (car (reverse (dictsearch
> > (namedobjdict) "aec_vars")))))))
> > lk
> > )
> >
> > CJ
> >
> >
> >
> >
> > "George Wharton" wrote in message
> > news:189357A97BBA3734BEA84193F012B4CB@in.WebX.maYIadrTaRb...
> > > I would like to create a custom command for text and dims which uses the
> > > Drawing Scale value to set the appropriate text height and dim scale.
> Does
> > > anyone know how I can access the Drawing Scale value in a lisp routine?
> > Any
> > > help would be greatly appreciated!
> > >
> > > George Wharton
> > >
> > >
> >
> >

--

-------------------
Nauman M
CAD Bazaar
Need to easily Navigate to your Custom Content Folders?
Need Autolayering for Dimensions without going through Design Center?
Download the updated ADT Tools for ADT 2 & 3 at
http://www.cadbazaar.com
Message 6 of 17
Anonymous
in reply to: Anonymous

yes

Kgallegos wrote:
>
> Will this work for ADT 2.0 as well?

--

-------------------
Nauman M
CAD Bazaar
Need to easily Navigate to your Custom Content Folders?
Need Autolayering for Dimensions without going through Design Center?
Download the updated ADT Tools for ADT 2 & 3 at
http://www.cadbazaar.com
Message 10 of 17
Anonymous
in reply to: Anonymous

No Documentation! Thats great.

Thanks Nauman M

"Nauman M" wrote in message
news:3B7AB9D3.2C7B41CE@email.com...
> oh this question should get rob started again with ADN? :_)
> actually , we found out by analysis.
> change a setting and see what gets changed.
> it is not documented, unless you belong to the club!
>
>
> George Wharton wrote:
> >
> > Thanks CJ this worked great. I had to change (defun SA: to (defun c:
and
> > then it worked fine. Where can I find more info on these "aec_vars"?
> >
> > George Wharton
> > ADT2i
> >
> > "CJ Follmer" wrote in message
> > news:B1C982FE14BF114B8DF615A1CB7681C6@in.WebX.maYIadrTaRb...
> > > ADT 3
> > >
> > > (defun SA:AecTextHeight (/ TH)
> > > (setq TH (CDR (ASSOC 42 (dictsearch (cdar (dictsearch (namedobjdict)
> > > "aec_vars")) "aec_vars_dwg_setup"))))
> > > TH
> > > )
> > > (defun SA:AecScale (/ ds)
> > > (setq ds (CDR (ASSOC 40 (dictsearch (cdar (dictsearch (namedobjdict)
> > > "aec_vars")) "aec_vars_dwg_setup"))))
> > > ds
> > > )
> > >
> > > (defun SA:AecCurrentLayerKey (/ lk)
> > > (setq lk (cdr (assoc 9 (dictsearch (cdar (dictsearch (namedobjdict)
> > > "aec_vars")) "aec_vars_dwg_setup"))))
> > > lk
> > > )
> > >
> > > ADT 2
> > > (defun SA:AecTextHeight (/ TH)
> > > (setq TH (cdr(assoc 42 (entget(cdr(car(reverse(dictsearch
(namedobjdict)
> > > "AEC_VARS")))))))
> > > TH
> > > )
> > > (defun SA:AecScale (/ ds)
> > > (setq ds (cdr(assoc 40 (entget(cdr(car(reverse(dictsearch
(namedobjdict)
> > > "AEC_VARS"))))))))
> > > ds
> > > )
> > >
> > > (defun SA:AecCurrentLayerKey (/ lk)
> > > (setq lk (cdr (assoc 9 (entget (cdr (car (reverse (dictsearch
> > > (namedobjdict) "aec_vars")))))))
> > > lk
> > > )
> > >
> > > CJ
> > >
> > >
> > >
> > >
> > > "George Wharton" wrote in message
> > > news:189357A97BBA3734BEA84193F012B4CB@in.WebX.maYIadrTaRb...
> > > > I would like to create a custom command for text and dims which uses
the
> > > > Drawing Scale value to set the appropriate text height and dim
scale.
> > Does
> > > > anyone know how I can access the Drawing Scale value in a lisp
routine?
> > > Any
> > > > help would be greatly appreciated!
> > > >
> > > > George Wharton
> > > >
> > > >
> > >
> > >
>
> --
>
> -------------------
> Nauman M
> CAD Bazaar
> Need to easily Navigate to your Custom Content Folders?
> Need Autolayering for Dimensions without going through Design Center?
> Download the updated ADT Tools for ADT 2 & 3 at
> http://www.cadbazaar.com
Message 10 of 17
Anonymous
in reply to: Anonymous

instigator!!!!

--
-------------------------------------------------------------------------
Rob Starz
Plogv 3.0 & 2000 (plot logging) for r14 & 2000
***Enhancement Tools for Arch. Desktop *****
!!!!!Beta Testers Needed For DormerX!!!!!!!
http://www.stardsign.com/DormerXForm.htm
http://www.stardsign.com/main.htm
Message 10 of 17
Anonymous
in reply to: Anonymous

UNFORTUNATELY i was not able to get to it after translating vba code to
vlisp either. It shows error when I get the listing.
(see my Vlisp /activeX post earlier.)
:-(
PS:
Though a good way to look at it is to get the dump of ActiveX
properties and compare it with the DXF properties.
and build a chart for yourself.
"Peter Funk - Autodesk, Inc" wrote:
>
> Not documented for Visual Lisp, but it is for VBA.
>
> Cheers,
>
> Peter Funk
> API Product Manager
> Building Industry Group
> Autodesk, Inc.

--

-------------------
Nauman M
CAD Bazaar
Need to easily Navigate to your Custom Content Folders?
Need Autolayering for Dimensions without going through Design Center?
Download the updated ADT Tools for ADT 2 & 3 at
http://www.cadbazaar.com
Message 13 of 17
Anonymous
in reply to: Anonymous

http://www.stardsign.com/DormerXForm.htm

Not Found

The requested URL /DormerXForm.htm was not found on this server.

???
there you go , beta tested this for you already!!!


Rob Starz wrote:
>
> instigator!!!!
>
> --
> -------------------------------------------------------------------------
> Rob Starz
> Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> ***Enhancement Tools for Arch. Desktop *****
> !!!!!Beta Testers Needed For DormerX!!!!!!!
> http://www.stardsign.com/DormerXForm.htm
> http://www.stardsign.com/main.htm

--

-------------------
Nauman M
CAD Bazaar
Need to easily Navigate to your Custom Content Folders?
Need Autolayering for Dimensions without going through Design Center?
Download the updated ADT Tools for ADT 2 & 3 at
http://www.cadbazaar.com
Message 14 of 17
Anonymous
in reply to: Anonymous

I clicked on the link and the page opened. You need to test on a computer
not a calculator.

--
-------------------------------------------------------------------------
Rob Starz
Plogv 3.0 & 2000 (plot logging) for r14 & 2000
***Enhancement Tools for Arch. Desktop *****
!!!!!Beta Testers Needed For DormerX!!!!!!!
http://www.stardsign.com/DormerXForm.htm
http://www.stardsign.com/main.htm
"Nauman M" wrote in message
news:3B7AD10E.79FC2AF1@email.com...
> http://www.stardsign.com/DormerXForm.htm
>
> Not Found
>
> The requested URL /DormerXForm.htm was not found on this server.
>
> ???
> there you go , beta tested this for you already!!!
>
>
> Rob Starz wrote:
> >
> > instigator!!!!
> >
> > --
>
> -------------------------------------------------------------------------
> > Rob Starz
> > Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> > ***Enhancement Tools for Arch. Desktop *****
> > !!!!!Beta Testers Needed For DormerX!!!!!!!
> > http://www.stardsign.com/DormerXForm.htm
> > http://www.stardsign.com/main.htm
>
> --
>
> -------------------
> Nauman M
> CAD Bazaar
> Need to easily Navigate to your Custom Content Folders?
> Need Autolayering for Dimensions without going through Design Center?
> Download the updated ADT Tools for ADT 2 & 3 at
> http://www.cadbazaar.com
Message 15 of 17
Anonymous
in reply to: Anonymous

http://www.stardsign.com/DormerXForm.html opens not htm. on my
calculator...



should be html not htm, ???


Rob Starz wrote:
>
> I clicked on the link and the page opened. You need to test on a computer
> not a calculator.
>
> --
> -------------------------------------------------------------------------
> Rob Starz
> Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> ***Enhancement Tools for Arch. Desktop *****
> !!!!!Beta Testers Needed For DormerX!!!!!!!
> http://www.stardsign.com/DormerXForm.htm
> http://www.stardsign.com/main.htm
> "Nauman M" wrote in message
> news:3B7AD10E.79FC2AF1@email.com...
> > http://www.stardsign.com/DormerXForm.htm
> >
> > Not Found
> >
> > The requested URL /DormerXForm.htm was not found on this server.
> >
> > ???
> > there you go , beta tested this for you already!!!
> >
> >
> > Rob Starz wrote:
> > >
> > > instigator!!!!
> > >
> > > --
> >
> > -------------------------------------------------------------------------
> > > Rob Starz
> > > Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> > > ***Enhancement Tools for Arch. Desktop *****
> > > !!!!!Beta Testers Needed For DormerX!!!!!!!
> > > http://www.stardsign.com/DormerXForm.htm
> > > http://www.stardsign.com/main.htm
> >
> > --
> >
> > -------------------
> > Nauman M
> > CAD Bazaar
> > Need to easily Navigate to your Custom Content Folders?
> > Need Autolayering for Dimensions without going through Design Center?
> > Download the updated ADT Tools for ADT 2 & 3 at
> > http://www.cadbazaar.com

--

-------------------
Nauman M
CAD Bazaar
Need to easily Navigate to your Custom Content Folders?
Need Autolayering for Dimensions without going through Design Center?
Download the updated ADT Tools for ADT 2 & 3 at
http://www.cadbazaar.com
Message 16 of 17
Anonymous
in reply to: Anonymous

Ok...this is freaky.

for some reason there are 2 files on my server htm and html. I made htm and
the htm link works for me. i don't know why html is there. I guess which
ever one works for you is great. They both work for me. I will be deleting
the html one.........OH...I know why.

My server host had to change all htm files to html for the counter to work.
I forgot they did that. I will leave the html one there and fix my link

--
-------------------------------------------------------------------------
Rob Starz
Plogv 3.0 & 2000 (plot logging) for r14 & 2000
***Enhancement Tools for Arch. Desktop *****
!!!!!Beta Testers Needed For DormerX!!!!!!!
http://www.stardsign.com/DormerXForm.html
http://www.stardsign.com/main.htm
"Nauman M" wrote in message
news:3B7ADAAA.6E4DE2D8@email.com...
>
> http://www.stardsign.com/DormerXForm.html opens not htm. on my
> calculator...
>
>
>
> should be html not htm, ???
>
>
> Rob Starz wrote:
> >
> > I clicked on the link and the page opened. You need to test on a
computer
> > not a calculator.
> >
> > --
>
> -------------------------------------------------------------------------
> > Rob Starz
> > Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> > ***Enhancement Tools for Arch. Desktop *****
> > !!!!!Beta Testers Needed For DormerX!!!!!!!
> > http://www.stardsign.com/DormerXForm.htm
> > http://www.stardsign.com/main.htm
> > "Nauman M" wrote in message
> > news:3B7AD10E.79FC2AF1@email.com...
> > > http://www.stardsign.com/DormerXForm.htm
> > >
> > > Not Found
> > >
> > > The requested URL /DormerXForm.htm was not found on this server.
> > >
> > > ???
> > > there you go , beta tested this for you already!!!
> > >
> > >
> > > Rob Starz wrote:
> > > >
> > > > instigator!!!!
> > > >
> > > > --
> > >
> >
> -------------------------------------------------------------------------
> > > > Rob Starz
> > > > Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> > > > ***Enhancement Tools for Arch. Desktop *****
> > > > !!!!!Beta Testers Needed For DormerX!!!!!!!
> > > > http://www.stardsign.com/DormerXForm.htm
> > > > http://www.stardsign.com/main.htm
> > >
> > > --
> > >
> > > -------------------
> > > Nauman M
> > > CAD Bazaar
> > > Need to easily Navigate to your Custom Content Folders?
> > > Need Autolayering for Dimensions without going through Design Center?
> > > Download the updated ADT Tools for ADT 2 & 3 at
> > > http://www.cadbazaar.com
>
> --
>
> -------------------
> Nauman M
> CAD Bazaar
> Need to easily Navigate to your Custom Content Folders?
> Need Autolayering for Dimensions without going through Design Center?
> Download the updated ADT Tools for ADT 2 & 3 at
> http://www.cadbazaar.com
Message 17 of 17
Anonymous
in reply to: Anonymous

my calculator works fine!!

Rob Starz wrote:
>
> Ok...this is freaky.
>
> for some reason there are 2 files on my server htm and html. I made htm and
> the htm link works for me. i don't know why html is there. I guess which
> ever one works for you is great. They both work for me. I will be deleting
> the html one.........OH...I know why.
>
> My server host had to change all htm files to html for the counter to work.
> I forgot they did that. I will leave the html one there and fix my link
>
> --
> -------------------------------------------------------------------------
> Rob Starz
> Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> ***Enhancement Tools for Arch. Desktop *****
> !!!!!Beta Testers Needed For DormerX!!!!!!!
> http://www.stardsign.com/DormerXForm.html
> http://www.stardsign.com/main.htm
> "Nauman M" wrote in message
> news:3B7ADAAA.6E4DE2D8@email.com...
> >
> > http://www.stardsign.com/DormerXForm.html opens not htm. on my
> > calculator...
> >
> >
> >
> > should be html not htm, ???
> >
> >
> > Rob Starz wrote:
> > >
> > > I clicked on the link and the page opened. You need to test on a
> computer
> > > not a calculator.
> > >
> > > --
> >
> > -------------------------------------------------------------------------
> > > Rob Starz
> > > Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> > > ***Enhancement Tools for Arch. Desktop *****
> > > !!!!!Beta Testers Needed For DormerX!!!!!!!
> > > http://www.stardsign.com/DormerXForm.htm
> > > http://www.stardsign.com/main.htm
> > > "Nauman M" wrote in message
> > > news:3B7AD10E.79FC2AF1@email.com...
> > > > http://www.stardsign.com/DormerXForm.htm
> > > >
> > > > Not Found
> > > >
> > > > The requested URL /DormerXForm.htm was not found on this server.
> > > >
> > > > ???
> > > > there you go , beta tested this for you already!!!
> > > >
> > > >
> > > > Rob Starz wrote:
> > > > >
> > > > > instigator!!!!
> > > > >
> > > > > --
> > > >
> > >
> > -------------------------------------------------------------------------
> > > > > Rob Starz
> > > > > Plogv 3.0 & 2000 (plot logging) for r14 & 2000
> > > > > ***Enhancement Tools for Arch. Desktop *****
> > > > > !!!!!Beta Testers Needed For DormerX!!!!!!!
> > > > > http://www.stardsign.com/DormerXForm.htm
> > > > > http://www.stardsign.com/main.htm
> > > >
> > > > --
> > > >
> > > > -------------------
> > > > Nauman M
> > > > CAD Bazaar
> > > > Need to easily Navigate to your Custom Content Folders?
> > > > Need Autolayering for Dimensions without going through Design Center?
> > > > Download the updated ADT Tools for ADT 2 & 3 at
> > > > http://www.cadbazaar.com
> >
> > --
> >
> > -------------------
> > Nauman M
> > CAD Bazaar
> > Need to easily Navigate to your Custom Content Folders?
> > Need Autolayering for Dimensions without going through Design Center?
> > Download the updated ADT Tools for ADT 2 & 3 at
> > http://www.cadbazaar.com

--

-------------------
Nauman M
CAD Bazaar
Need to easily Navigate to your Custom Content Folders?
Need Autolayering for Dimensions without going through Design Center?
Download the updated ADT Tools for ADT 2 & 3 at
http://www.cadbazaar.com

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

Post to forums  

”Boost