In app Macro language in .Net Core?

SilverShaded

Well-known member
Joined
Mar 7, 2020
Messages
105
Programming Experience
10+
Hi, i though VSTA might be the asnwer but turned out not to be, so does anyone know if there are any easy to implement solutions for having a macro language inside a .Net Core app, int the same way as VBA exists in office apps?
 
Syntax coloring is just eye candy. Focus on getting scripting working first since that will get you the most bang for your time investment. You will have something that can do you some good now, rather than later.

Then after that see about getting syntax coloring. The modern advice nowadays is to do syntax coloring right by actually integrating with your script parser/compiler/interpreter instead of the traditional way of doing syntax coloring where a disjoint or bespoke parser is created.
 
I might just hard code it for my own use, ive also considered blockly which ive used in someone elses app and seemed user friendly.

I will be running out of time soon, sick leave will be ending and then its back to the salt mine!
 

Latest posts

Back
Top Bottom