Jump to content

Welcome to eMastercam

Register now to participate in the forums, access the download area, buy Mastercam training materials, post processors and more. This message will be removed once you have signed in.

Use your display name or email address to sign in:

POST Editing


Recommended Posts

I am a proficient programmer in vb and am currently looking into editing a master post for the CNC dept.

 

Can someone guide me to some resources about post editing, the formats, syntax and available resources within post?

 

I want the post to terminate when if a declaration is not met. In other words, if a specific requirement is not met, then i would want a message to alert the user the reason for termination and then not complete the post process. Is that possible?

Link to comment
Share on other sites
  • 1 year later...

You could also try contacting your local reseller and ask for the "Mpmaster Quick Reference Guide, (Fundamental post processor customization techniques for 3 to 4 axis mill)" published by In-House Solutions.

 

It's a 170+ page reference book that uses mpmaster for its examples.

Link to comment
Share on other sites

You can use some variation of the code below.

 

The variable exitpost$ will stop the posting process and mprint will display a dialoge box with the error message.

 

Note that mprint returns a value of 0 or 1, so it has to be written to an integer variable (result in the code below - result may already exist in your post processor).

 

####################################

#Integer initializations

my_var : 0

result : 0

 

#String initialization

serror : "ERROR - POST WILL EXIT"

 

pmy_postblock

if my_var <> 0,

[

result = mprint(serror)

exitpost$

]

####################################

 

Hope this helps.

 

I am a proficient programmer in vb and am currently looking into editing a master post for the CNC dept.

 

Can someone guide me to some resources about post editing, the formats, syntax and available resources within post?

 

I want the post to terminate when if a declaration is not met. In other words, if a specific requirement is not met, then i would want a message to alert the user the reason for termination and then not complete the post process. Is that possible?

Link to comment
Share on other sites
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.

Join us!

eMastercam - your online source for all things Mastercam.

Together, we are the strongest Mastercam community on the web with over 56,000 members, and our online store offers a wide selection of training materials for all applications and skill levels.

Follow us

×
×
  • Create New...