Jump to content

How Do I - Request Bids for New Lisp


ILoveMadoka

Recommended Posts

I'm needing to have something written and am wondering how to best approach request for bids on a new lisp routine...

 

No idea what it takes to write this (I can't find what I need via searches) or how long it would take to write

so if paying is my only option I'd like to know what some of the power players would charge me to write this.

 

I want to accomplish the following one way or another

 

 

 

Find all Table Styles in a drawing

 

image.png.34288ef135258a5a6406172427cd557d.png

 

change settings under each of the Cell Styles

 

image.png.ca0dea6b4db1b5bf5574494b5b267100.png

 

Under the Borders Tab

Lineweight = ByLayer

Linetype = ByLayer

Color = ByLayer

All Borders

 

image.png.8c0ceef25f3228cc354db47348a1476b.pngimage.png.03ac5a8136cefd281f77101645c04060.png

 

Under the Text tab

Text Style = Romans

Text Height = .125

Text Color = ByLayer

image.png.10057c47e1f77f7ae390516325b4f3f8.png        image.png.fd48a3506b1c1772a768e80329500676.png

 

 

Or do all this by selecting a particular table.

 

So either globally change all or change by selection.

 

I think that sums it up.

 

I don't want to post my email here so please advise on how I should proceed.

 

Thanks..

 

image.png

Edited by ILoveMadoka
Link to comment
Share on other sites

I think you already have asked, you should get some responses, Lee-mac, Tharwat, Maratovich, Ronjonp, Grr, maybe me, come to mind. Its more about if you have done it before so its easy to modify to suit.

 

Here is step 1 as asked.

(setq tbldict (vla-item (vla-get-dictionaries (vla-get-database (vla-get-activedocument (vlax-get-acad-object)))) "Acad_TableStyle"))
(setq x (vla-get-count tbldict))
(setq tlist '())
(repeat x
(setq tlist (cons (vla-get-name  (vla-item tbldict (setq x (- x 1)))) tlist))
)

You may have this file.

list of methods for a table.txt

 

This may reveal a lot note the use of PUT and SET 

 

Tables various settings.lsp

Edited by BIGAL
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...