Page 1 of 1

Request for technical support

Posted: Fri Nov 22, 2019 4:26 am
by madhivaanan1
Hi Team,

Kindly help us with below queries we got while our evaluation.

1) LISP Loading- After loading the LISP file, when we run 'INO'cmd (For incremental numbering on blocks) an error pops up 'BAD ARGUMENT' . (LISP file is attached)
2) How to customize print page size. In the print page dialogue box, the user is able to change the size of the page by manually entering the size. Ex-33.3x45.5(in/mm).
3) How to migrate custom/user defined hatch patterns from AutoCAD to IntelliCAD. *(Critical).
4) Since there is no custom hatches in IntelliCAD, user's custom hatch patterns from AutoCAD is converted into SOLID in IntelliCAD when the ACAD .dwg file is opened in IntelliCAD.
5) Tool Palettes customization helps us to add tools to the existing palette. Is it possible to add our own custom/external tool palette?
6) How to Sync the model data from ATTRIBUTE PROPERTIES. Ex- Consider a rectangle which has different entities and data, when one side of the rectangle is stretched, the data remains the same and the stretched area is empty. The user can sync the data in the stretched area using attribute properties->sync.

Thanks & Regards,
Madhi V

Re: Request for technical support

Posted: Fri Nov 22, 2019 7:21 am
by QuanNguyen
Hi,
Can you attach the Lisp file that including the 'INO' command ?
Because we can not attached in this, try upload to some cloud (Google drive, Dropbox ...) then put URL here.

Re: Request for technical support

Posted: Tue Dec 03, 2019 11:32 pm
by madhivaanan1
Hi Team,

Kindly help us with the below queries we got while our evaluation.

1) LISP Loading- After loading the LISP file, when we run 'INO'cmd (For incremental numbering on blocks) an error pops up 'BAD ARGUMENT'. (LISP file is attached)

https://www.dropbox.com/s/gu38l1g9he83j ... y.lsp?dl=0

2) How to customize print page size. In the print page dialogue box, the user is able to change the size of the page by manually entering the size. Ex-33.3x45.5(in/mm).
3) How to migrate custom/user-defined hatch patterns from AutoCAD to IntelliCAD. *(Critical).
4) Since there are no custom hatches in IntelliCAD, the user's custom hatch patterns from AutoCAD are converted into SOLID in IntelliCAD when the ACAD .dwg file is opened in IntelliCAD.
5) Tool Palettes customization helps us to add tools to the existing palette. Is it possible to add our own custom/external tool palette?
6) How to Sync the model data from ATTRIBUTE PROPERTIES. Ex- Consider a rectangle that has different entities and data, when one side of the rectangle is stretched, the data remains the same and the stretched area is empty. The user can sync the data in the stretched area using attribute properties->sync.

Thanks & Regards,
Madhi V

Re: Request for technical support

Posted: Wed Dec 04, 2019 7:38 am
by QuanNguyen
Just fixed the INO lisp, please try again.

Code: Select all

; MatchText.lsp by J.J.Damstra - Copyright ©2005.
; Replaces ANY selected string for another
; 21-06-05   first release
; 09-07-05   tableindicator

(defun c:INO (/ ch_txt ENTITY ENTITYLIST TXT_STR OBJECT pickpnt E-TYPE n ti)
  (defun ch_txt (TXT_STR ENTITY / ENTITYLIST OLD NEW ENT)
      (setq ENT (car ENTITY)
            ENTITYLIST (entget ENT)
            OLD (assoc 1 ENTITYLIST)
            NEW (cons  1 TXT_STR)
            ENTITYLIST (subst NEW OLD ENTITYLIST))
      (entmod ENTITYLIST)
      (entupd ENT)
    )

  (command ".undo" "begin")
;;;(if (> (atof (getvar "ACADVER")) 16.1)(progn
;;;   (setq ti (getvar "TABLEINDICATOR"))(setvar "TABLEINDICATOR" 0)
;;;))
  (setq no(GETINT "\nEnter the starting no:")
	TXT_STR(RTOS no))

  (while (setq ENTITY (nentsel "\nSelect text to change: ")) ; NIL > WEND
    (if (> (length ENTITY) 3) ; insert/dimension/table
      (progn
	(setq OBJECT (car (last ENTITY))
	      ENTITYLIST (entget OBJECT)
	      pickpnt (cadr ENTITY)
	      E-TYPE (cdr (assoc 0 ENTITYLIST)))
	(cond
	  ((= E-TYPE "INSERT")
	   (ch_txt TXT_STR ENTITY)
	   )
	  ((wcmatch E-TYPE "*DIMENSION")
	   (command ".dim1" "newtext" TXT_STR OBJECT "")
	   )
	  ((= E-TYPE "ACAD_TABLE")
	   (command ".tabledit" pickpnt "@#@")
	   (setq ENTITYLIST (entget OBJECT))
	   (foreach n ENTITYLIST
	     (if (eq (car n) 1)
	       (if (eq (substr (cdr n) 1 3) "@#@")
		 (entmod (subst (cons 1 TXT_STR) n ENTITYLIST))
		 )
	       )
	     )
	   )
	  )
	(entupd OBJECT)
	)
      ; else
      (ch_txt TXT_STR ENTITY) ; text/mtext/attribute
      )
    (setq no(+ no 1)
	  TXT_STR(RTOS no))
    )
  ;;;(if ti (setvar "TABLEINDICATOR" ti))
  (command ".undo" "end")
  (princ)
  )

Re: Request for technical support

Posted: Thu Dec 05, 2019 4:44 am
by madhivaanan1
Dear Team,

Thanks for resolving the issue with LISP file.

Kindly provide us the resolution to the below pending queries :

1) How to customize print page size. In the print page dialogue box, the user is able to change the size of the page by manually entering the size. Ex-33.3x45.5(in/mm).
2) How to migrate custom/user-defined hatch patterns from AutoCAD to IntelliCAD. *(Critical).
3) Since there are no custom hatches in IntelliCAD, the user's custom hatch patterns from AutoCAD are converted into SOLID in IntelliCAD when the ACAD .dwg file is opened in IntelliCAD.
4) Tool Palettes customization helps us to add tools to the existing palette. Is it possible to add our own custom/external tool palette?
5) How to Sync the model data from ATTRIBUTE PROPERTIES. Ex- Consider a rectangle that has different entities and data, when one side of the rectangle is stretched, the data remains the same and the stretched area is empty. The user can sync the data in the stretched area using attribute properties->sync.

Thanks & Regards,
Madhi V

Re: Request for technical support

Posted: Thu Dec 05, 2019 9:29 pm
by QuanNguyen
About the migrate custom/user-defined hatch patterns from AutoCAD to IntelliCAD,

It's the same as AutoCAD.
- If you have the PAT file, copy them to support folder of the installation directory, type HATCHPAT in command line to refer the path.
- if not, try search the lisp routine that extract PAT file from drawing. refer : http://www.turvill.com/t2/free_stuff/getpat.lsp

Regards.

Re: Request for technical support

Posted: Sun Dec 08, 2019 11:46 pm
by madhivaanan1
Dear Team,

Thanks for resolving the issue with Custom/User-Defined Hatches.

Kindly help us with below queries as well :

1) How to customize print page size. In the print page dialogue box, the user is able to change the size of the page by manually entering the size. Ex-33.3x45.5(in/mm).
2) How to Sync the model data from ATTRIBUTE PROPERTIES. Ex- Consider a rectangle that has different entities and data, when one side of the rectangle is stretched, the data remains the same and the stretched area is empty. The user can sync the data in the stretched area using attribute properties->sync.

Your early response will highly be appreciated.

Thanks & Regards,
Madhi S

Re: Request for technical support

Posted: Mon Dec 09, 2019 8:41 am
by QuanNguyen
Hi,
1. Please refer the attached image to customize print page size.
https://www.dropbox.com/s/s929uzd1wctta ... e_size.png?

2. About " Sync the model data", it takes time to write a lisp routine or similar, so please search a development in freelancer website.

Regards.

Unable to use PRINT STYLE and TRANSPARENCY together.

Posted: Mon Dec 30, 2019 1:31 am
by madhivaanan1
Hi CMS Team,

Please provide a support on the below mentioned query,

In the PRINT setup page, when the PRINT STYLE(Icad.ctb) is selected and if we select PRINT TRANSPARENCY, an message tab pops up saying....
"Print transparency mode and print style are enabled at the same time and this combination is currently not supported"

Kindly provide a solution where i can use both my print styles with transparency simultaneously.