CoCreate User Forum  

Go Back   CoCreate User Forum > Search Forums

Showing results 1 to 25 of 36
Search took 0.01 seconds.
Search: Posts Made By: Henk Stokkel
Forum: Customization 12-15-2012, 11:32 PM
Replies: 9
Views: 7,434
Posted By Henk Stokkel
Re: Screw position on a tilted face

The macro is written in Dutch.
Werkvlak : workplane
a_plaats : point
richting :direction
Forum: Annotation 10-16-2012, 09:05 AM
Replies: 1
Views: 5,634
Posted By Henk Stokkel
Re: BOM Layout size

Yes, jou must make for each size the correct BOM layout. Some parts you can reuse like the BOM flag.
Forum: Customization 09-28-2012, 06:09 AM
Replies: 9
Views: 7,434
Posted By Henk Stokkel
Re: Screw position on a tilted face

For loading parts from ModelManager we use this macro for placing bolts and nuts in the right place and richt angle. The parts are loaded in the world origin first rotated and then moved.
Forum: Customization 06-21-2012, 10:28 PM
Replies: 3
Views: 3,931
Posted By Henk Stokkel
Re: Call dialog from defun

Under ASSY you only want assemblies but you want to make a part active This doesn't work. Use :value-type :part-assembly or select the assy of the current part.
Forum: Customization 06-21-2012, 10:24 PM
Replies: 14
Views: 9,114
Posted By Henk Stokkel
Re: OSD => Save current WP into .mi file

It works fine by me. i use this in a macro to make slices of a 3D object so I can use these contours on a 2.5D milling machine.
Forum: Customization 06-18-2012, 12:46 AM
Replies: 14
Views: 9,114
Posted By Henk Stokkel
Re: OSD => Save current WP into .mi file

To store the geometry from a workplane I use this code in a macro of mine:
(sd-call-cmds
(MI_OUT
:filename name_of_file
:overwrite
:select...
Forum: Customization 03-30-2012, 06:17 AM
Replies: 2
Views: 3,302
Posted By Henk Stokkel
Re: am_customize not working

You commented the lines out by using ;
Forum: Customization 12-06-2011, 02:32 AM
Replies: 2
Views: 2,749
Posted By Henk Stokkel
Re: using CHANGE_DIM_TEXT_SPACE in a drafting macro

TRAP_ERROR
OPEN_INFILE 1 (Filepadnaam+'.loc')
END
IF (CHECK_ERROR) {als file.loc niet bestaat}
EDIT_FILE Filepadnaam
ELSE ...
Forum: Customization 11-14-2011, 06:09 AM
Replies: 4
Views: 4,985
Posted By Henk Stokkel
Re: Position after load

Tom,

The macro is a part of our bolts and nuts macro. The part of DEFUN plaatsen en DEFUN plaatsen_part is interesting for you. In these two macro's the new loaded part is placed on the right...
Forum: Customization 11-08-2011, 05:39 AM
Replies: 4
Views: 4,985
Posted By Henk Stokkel
Re: Position after load

We use a macro to draw a bolt or reload it from MM when it exsits in MM. After loading, the bolt will be placed in the right point and direction.
The comments in the macro are in Dutch.
Attached is...
Forum: Customization 03-31-2011, 11:44 PM
Replies: 4
Views: 4,722
Posted By Henk Stokkel
Re: lisp placing text

With me the macro works fine. I only had to change the title Tekst to Tekst1 and the dialog title to tekst1 because of a conflict with my macro's.
Forum: Annotation 03-26-2010, 01:36 AM
Replies: 14
Views: 20,949
Posted By Henk Stokkel
Re: P.C.D line lisp tool translation.

A smal adjustment in the dialog.
In dutch
Een kleine aanpassing in het menu

Henk Stokkel
Forum: CoCreate Modeling 05-16-2008, 04:05 AM
Replies: 2
Views: 3,635
Posted By Henk Stokkel
Re: Error message: the memory is not enough

In the next link you can find the explanation of the 3G switch in a windows system
http://www.microsoft.com/whdc/system/platform/server/PAE/PAEmem.mspx
Forum: CoCreate Modeling 02-01-2008, 03:04 AM
Replies: 2
Views: 3,339
Posted By Henk Stokkel
Re: Model Manager is not starting

You must buy ModelManager
Forum: Customization 01-17-2008, 04:16 AM
Replies: 2
Views: 2,593
Posted By Henk Stokkel
Re: Find and replace linefeed

I found the solution myself

(setq zaagtekst (substitute #\| #\Linefeed zaagtekst))
Forum: Customization 01-17-2008, 01:46 AM
Replies: 2
Views: 2,593
Posted By Henk Stokkel
Find and replace linefeed

How can I find a carriage-return or linefeed character in a text and replace these by an other character.
Forum: Customization 01-06-2008, 11:56 PM
Replies: 3
Views: 3,505
Posted By Henk Stokkel
Re: Reference line for BOM Flag

I'am working on the bomreference module. The numbers wil be aligned to the former number. Only I was not yet succesful to integrate the refline with more points. The refline can be replaced with the...
Forum: CoCreate Drafting 11-26-2007, 04:49 AM
Replies: 2
Views: 2,618
Posted By Henk Stokkel
Re: How to give DIM attributes ?

Command to copy a style:

Dimension --> Style --> Grab to get the style,
and
Dimension --> Style --> Apply to put the style to a dimension
Forum: Annotation 09-21-2007, 05:18 AM
Replies: 3
Views: 3,623
Posted By Henk Stokkel
Re: How to get greater than or equal to character (>=)

We had the same problem. In OSD ANNO and MM we use these for special characters:
Alt 0216 - Ø
Alt 0177 - ±
Alt 0186 - º
Alt 0181 - µ
Alt 0223 - ß
To find out more codes go to the following...
Forum: Data Management 09-05-2007, 06:51 AM
Replies: 2
Views: 1,913
Posted By Henk Stokkel
Re: MM 15: problem sending bom to Annotation

This is probaly the same problem as in forum: Customization -Read a cell in DB table

Henk
Forum: Customization 09-03-2007, 10:27 PM
Replies: 5
Views: 3,073
Posted By Henk Stokkel
Re: Read a cell in DB table

I had the same problem for reading the db-table i solved it in the following way:

(setq testrij (sd-read-logical-table-row ltab :row (- teller i 1)))
(setq posnummer...
Forum: Customization 04-09-2007, 10:15 PM
Replies: 4
Views: 3,884
Posted By Henk Stokkel
Re: sd-defdialog text editor

(ui_oms2 :value-type :string
:title "Specificatie"
:initial-value
(if (sd-inq-curr-part)
(progn
...
Forum: Customization 03-14-2007, 07:24 AM
Replies: 3
Views: 4,676
Posted By Henk Stokkel
Re: Problem with command "sd-read-logical-table-cell"

Thanks Wolgang, your remark gave me the way to the solution.
I fixed the problem as follows:
(setq testrij (sd-read-logical-table-row ltab :row (- teller i 1)))
(setq lengte (length testrij))
...
Forum: Customization 03-05-2007, 12:48 AM
Replies: 3
Views: 4,676
Posted By Henk Stokkel
Re: Problem with command "sd-read-logical-table-cell"

Wolfgang,

Thank you for your tip.
The output in version 14.5 is:
776
In this output you can see the headers without {"}.
In version 15 the output is:
777
In the output you can see the {"}...
Forum: Customization 03-02-2007, 06:33 AM
Replies: 3
Views: 4,676
Posted By Henk Stokkel
Problem with command "sd-read-logical-table-cell"

In version 14.5 I use the command:
(sd-read-logical-table-cell ltab :row i :column :indentifier) To determine the value of a cell in a table. This table is exported from ModelManager to Annotation....
Showing results 1 to 25 of 36

 
Forum Jump

All times are GMT -8. The time now is 12:28 AM.



Hosted by SureServer    Forums   Modeling FAQ   Macro Site   Vendor/Contractors   Software Resellers   CoCreate   Gallery   Home   Board Members   Regional User Groups  By-Laws  

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.