A common mistake I find in people trying to load and execute scripts in Eplan, is that they forget to save their files in the correct format. A simple .txt won’t do it, as that isn’t recognized by Eplan’s compiler as being a script. So using the example of the script to change the language, … Continue reading How to save a file as script
Etiqueta: programming
Script to change the language in Eplan P8
Sometimes we just want to change the language in Eplan, so that it can be printed or exported in a certain language. For those situations, one can very easily put this script to use and voilá, the language will change. using System.IO; using System; using System.Windows.Forms; using Eplan.EplApi.Scripting; using Eplan.EplApi.ApplicationFramework; using Eplan.EplApi.Base; public class Class … Continue reading Script to change the language in Eplan P8
Eplan script to export several projects as PDF
If I had a nickel for every time I had to export 10 or more Eplan projects as PDF, I’d be a rich man. A very annoyed, but rich man. This has got to be one of the most time-consuming tasks in Eplan and it happens to be a pretty recurring one. Usually one doesn’t … Continue reading Eplan script to export several projects as PDF