Re: Bolt Circle Wizard

Hi Terry nice job! Since posting as learning templates I hope you don't mind me making a suggestion. When I first tried this wizard I got and Exception because I didn't have a "Gcodes" folder created in UCCNC that wizard is writing to. By adding code below to the beginning of macro will fix.
Dan
Dan
- Code: Select all
string Path2 = Application.StartupPath + @"\Gcodes";
if (!System.IO.Directory.Exists(Path2)) { System.IO.Directory.CreateDirectory(Path2); }