Alphacam logo
Sitemap

Sitemap

Alphacam V7.5 Release Notes - Build 7.5.0.140

Other Sections

V7.5 Release Notes

General Release Notes

Build 7.5.1.165 (Maintenance Release)

Build 7.5.1.158 (General Release)

Build 7.5.0.106 (Internal Beta Release)

Alphawindoor 2.0 Release Notes


Build 7.5.0.140 (Distributed Beta Release)

General 11

Clamps and Fixtures. 12

Feature Extraction/Solid Importing. 12

Nesting. 12

Mill/Turn. 12

Mill 12

Stone. 12

API/Development (Acam.exe) 12

API/Development (Feature.dll)


Nesting: 7.5.0.102
Parametric: 7.5.0.118
STL Input: 7.5.0.102
Solid Model Feature Extraction: 7.5.0.106

General

Clamps and Fixtures

Feature Extraction/Solid Importing

Nesting

Mill/Turn

Mill

Stone

API/Development (Acam.exe)

Using these objects guarantees that only AlphaV7.5 will be run, so you only need to test your code against AlphaV7.5.  Upon AlphaV8, you can test it and issue a new version.

For example, to run V7.5 Router:

Dim A As Object
Dim Acam As AlphaCAMRouter.App
Set A = CreateObject(“aroutaps.V75AcamRouter”)
Set Acam = A.App

Acam then represents the usual Alphacam application object, which can be used in the same way as before.

Another difference with these new objects is that Alphacam will start hidden.

To make Alphacam visible, simply set the Visible property:

Acam.Visible = True

Function InitAlphacamAddIn(AcamVersion As Long) As Integer

    Dim Frm As Frame

    Set Frm = App.Frame

    Frm.AddMenuItem2 "Select Post1", "CmdPost1", acamMenuFILE, ""

    Frm.AddMenuItem2 "Select Post2", "CmdPost2", acamMenuFILE, ""

End Function

Public Sub CmdPost1()

    App.SelectPostModuleInThisVBAProject "Post1"

End Sub

Public Sub CmdPost2()

    App.SelectPostModuleInThisVBAProject "Post2"

End Sub

API/Development (Feature.dll)


© Planit 2008