Just added a tool changer to my machine.
I want to store tool number into a tool pocket
I.e. Tool 46 in pocket 1
Best way to achieve this? So it can be recalled on next startup?
Ideally something where I don't have to add to the stock screens
Battwell wrote:I'm sure I read somewhere that certain dros or variables could be saved automatically on shutdown.
readfield = exec.Readkey("UserTextfields", "20327", "0.000");
AS3.Setfieldtext(readfield, 20327); // Set Park #3 X Value
AS3.Validatefield(20327);
[ToolNames]
Tool001=Drill 0.500mm
Tool002=Drill 0.600mm
Tool003=Drill 0.700mm
Tool004=Drill 0.800mm
Tool005=Drill 0.900mm
Tool006=Drill 1.000mm
Tool007=Drill 1.100mm
Tool008=Drill 1.200mm
Tool010=Drill 2.000mm
Tool012=Drill 3.000mm
Tool013=Drill 3.200mm
Tool020=End mill 0.800mm
Tool021=End mill 1.000mm
Tool022=End mill 1.200mm
Tool023=End mill 1.500mm
Tool030=Par 2.0x8 A
Tool031=2F 2.0x22 A W PVC
Tool032=1F 4.0x28 A W
Tool033=2F 2.5x8 D6 ALU
Tool034=2F 4.0x19 D6 ALU
Tool040=V 20° 0.1mm
Tool041=V 10° 0.1mm
string NewToolName = "T" + NewTool + " " + ((NewTool > 0) ? exec.Readkey("ToolNames", "Tool" + NewTool.ToString("D3"), "T" + NewTool + "?") : "No tool");
AS3.Setfieldtext(NewToolName, ToolChangeInfoFld);
exec.Writekey("ToolNames", "Tool001", "Drill 0.500mm");
Users browsing this forum: No registered users and 4 guests