Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Alderanuri

Pages: [1] 2
1
Scripts and Plugin Help / Re: vb and C#
« on: July 03, 2017, 21:11:14 pm »

"Do you have a developer license?"

I do not have a cnc machine
I am writing a macro
The use of the Cambam program has come to an end

Whether you have an educator and developer license
I asked?

2
Scripts and Plugin Help / Re: vb and C#
« on: July 03, 2017, 20:57:37 pm »
?

3
Scripts and Plugin Help / Re: vb and C#
« on: July 03, 2017, 20:51:32 pm »
https://www.youtube.com/watch?v=wnx9lPwXMAc

Video in this link
I want to do the same with Cambam

4
Scripts and Plugin Help / Re: vb and C#
« on: July 03, 2017, 20:43:12 pm »
OK
What is needed
As information
Do you have a developer license?

5
Scripts and Plugin Help / Re: vb and C#
« on: July 02, 2017, 19:23:35 pm »
I am not kidding

thanks

6
Scripts and Plugin Help / Re: vb and C#
« on: July 01, 2017, 17:15:30 pm »
how to run vbScripts macro C#

thanks

7
Scripts and Plugin Help / Re: vb and C#
« on: June 30, 2017, 20:51:39 pm »

I wanted to write a parametric macro
How to do auto nesting
How to make an auto select tool
I have reviewed 10-15 example code

8
Scripts and Plugin Help / Re: vb and C#
« on: June 30, 2017, 20:29:11 pm »
No progress
Sample and API incompleteness

9
Scripts and Plugin Help / Re: vb and C#
« on: June 29, 2017, 20:58:32 pm »
Sub Main
   
        Dim pr As poliRectangle = New PolyRectangle ()

        pr.CornerRadius = 0
        pr.Width = 100
        pr.Height = 50
        pr.Closed = True
        pr.Update ()

        CamBamUI.MainUI.ActiveView.CADFile.Add (pr)

end sub




tool selected ?

10
Scripts and Plugin Help / Re: vb and C#
« on: June 29, 2017, 20:56:17 pm »
Now I expect samples from you

11
Scripts and Plugin Help / Re: vb and C#
« on: June 29, 2017, 20:33:14 pm »
Attribute VB_Name = "Model001"
Public Sub Model_001()

App.New

Dim drw As Drawing
Set drw = App.ActiveDrawing

Dim Ty As MillData
Set Ty = App.CreateMillData

heigth = 800
width  = 450



Dim Rectangle As Path
Set Rectangle = drw.CreateRectangle(0, 0, width, heigth)
Rectangle.Fillet (5)


    App.SelectTool T1

   
        Rectangle.Selected = True
   
   
    With Ty
    .ToolNumber = 1
    .OffsetNumber = 1
    .SpindleSpeed = 18000
    .DownFeed = 3000
    .CutFeed = 8000
    .SafeRapidLevel = 30
    .RapidDownTo = 30
    .MaterialTop = 0
    .Stock = 0
    .FinalDepth = -5
    .NumberOfCuts = 1
    .McComp = acamCompTOOLCEN
    .XYCorners = acamCornersSTRAIGHT
    .WidthOfCut = 1
    End With
 
    Ty.RoughFinish

Rectangle.Selected = Fale

End Sub

12
Scripts and Plugin Help / draw rectangle
« on: June 29, 2017, 19:35:47 pm »
hi
how to draw rectangle
and selected tool

visual studio code_?

13
Scripts and Plugin Help / Re: vb and C#
« on: June 28, 2017, 22:59:59 pm »

Rectangle
create
Do nesting after

14
Scripts and Plugin Help / Re: vb and C#
« on: June 28, 2017, 22:38:28 pm »
I want to do it this way

15
Scripts and Plugin Help / Re: vb and C#
« on: June 28, 2017, 21:38:34 pm »
sample project form

Pages: [1] 2