|
EPLAN Electric P8 : Übernahme von Scripten und Toolbars nach 2.0
fritzemann1 am 27.09.2010 um 14:07 Uhr (0)
Hallo Robin,Hallo chicken,hierbei handelt es sich um ein script vom Jonny Wire -Abbruchstellen und PDF on closing project.Beim Laden und anschließend ausführen des scriptes erscheint Compilerfehler.Ob mir die Eplan Hotline helfen kann? Hatte schon mit Jonny gemailt. Er wollte sich mit dem Thema befassen.Gruß Uli
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : Forms
LaurasM am 13.01.2011 um 08:34 Uhr (0)
Hello, EPLAN Electric P8 fans. I have 2.0 version and recently faced with a problem of one form…1) I want to generate a form that will sort parts according to the manufacturer, for example:***************************************************************************manufacturer1 Part name .............. quantyti...............price ............... etc.. . . .manufacturer2 . . .***************************************************************************EPLAN have th ...
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : XML-Ausgabe per Script
ENPLANER am 20.01.2011 um 16:11 Uhr (0)
Hallo miteinander,ich habe versucht über ein Script die Seiten im xml - Format auszugeben. Aber es funzt nicht. Wenn ich es im xls - Format versuche funzt es. Ich denke es fehlt an dem korrekten Schema (ConfigSchema). Wie ist ein solches Schema zu erstellen, zu benennen und in die Übergabefunktion (derzeit ??????) einzustellen? public void PageExport() { string project; project = GetProject(); MessageBox.Show(project); ActionCallingContext PageExportContext = new ActionCallingContext(); PageEx ...
|
In das Form EPLAN Electric P8 wechseln |
 DatumVoorblad.vb.txt |
EPLAN Electric P8 : Skript Text modifizieren
dendonz am 16.03.2011 um 22:36 Uhr (0)
Hallo zusammen,Entschuldigen Sie mich für meine Grammatik . Deutsch ist nicht meine Muttersprache (nl).Ich möchte ein Skript machen. Was ich will:In mein project gibt es Auf die Titelseite Texte mit Project-status und Datum.Das Skript soll das heutige Datum in einem ausgewählten Text einfügen.Das konvertieren von heutige System-Datum nach das gewünschte Format geht schon gut. (Siehe Anhang)Was ik suche ist ein möglichkeit das Textfeld in einem Text zu füllen wie das auch geht mit einem feld in ein Symbol.I ...
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : ProgressBar
ENPLANER am 07.06.2011 um 18:05 Uhr (0)
Hallo miteinander,hat mir jemand einen Tip, weshalb bei meinem Skript keine Box mit Fortschrittsbalken erscheint? Was ist falsch? Progress pDXF = new Progress("SimpleProgress"); pDXF.SetAllowCancel(true); if (!pPDF.Canceled()) { ActionCallingContext DXFExportContext = new ActionCallingContext(); DXFExportContext.AddParameter("TYPE", "DXFPROJECT"); DXFExportContext.AddParameter("PROJECTNAME", project); DXFExportContext.AddParameter("DESTINATIONPATH", @"eplan.lcdfs
tkonstruktionekon!Aus ...
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : ProgressBar
Straight-Potter am 08.06.2011 um 09:26 Uhr (0)
Fritz hat Recht und unrecht Ein Teil fehlt:Code:Progress pDXF = new Progress("SimpleProgress");progress.BeginPart(100,""); pDXF.SetAllowCancel(true); if (!pPDF.Canceled()) { progress.BeginPart(100,"DXF Export"); ActionCallingContext DXFExportContext = new ActionCallingContext(); DXFExportContext.AddParameter("TYPE", "DXFPROJECT"); DXFExportContext.AddParameter("PROJECTNAME", project); DXFExportContext.AddParameter("DESTINATIONPATH", @"eplan.lcdfs
t ...
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : ProgressBar
ENPLANER am 09.06.2011 um 07:09 Uhr (0)
Hallo Fritz, hallo Straight-Potter,danke für die Infos, aber es haut bei mir nicht hin. Es gibt nur am Ende der Ausführung ein kurzesAufblitzen der Box wenn ich das so richtig sehe. Manchmal wechselt dann auch das EPLAN Fenster in den Hintergrund. Ich setz mein Skript nochmals rein, vielleicht kann es jemand mal bei sich kurz testen. Aktuell verwende ich die V1.9.11.public class Script{ public string GetProjectPages() { string strProject = ""; ActionCallingContext ProjectContext = new ActionCalling ...
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : Insert windowmacro from API
Express1 am 18.12.2011 um 10:41 Uhr (0)
Hi, Im new here.Maybe someone here can explain my question.Is it possible to insert a macrowindow to an existing page in a project?Find this in the EPLAN_API: public: void SetProject, Im not sure if you can use it?Creates today macros by Project pProject = new ProjectManager().CurrentProject; Eplan.EplApi.DataModel.Page oPage = new Eplan.EplApi.DataModel.Page(); PagePropertyList pNameParts = new PagePropertyList(); pNameParts.DESIGNATION_PLANT = "EB3"; pNameParts ...
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : Insert windowmacro from API
FML am 19.12.2011 um 09:21 Uhr (0)
Hi, Zitat:Is it possible to insert a macrowindow to an existing page in a project?Yes.In the example with the statement Zitat:Eplan.EplApi.DataModel.Page oPage = new Eplan.EplApi.DataModel.Page();you create a new page.If you want to place a macro to an existing page you have to identify the object handle of the wanted page and give it to theInsert.WindowMacro Method.Hope this will help you.Fritz------------------Um zu sehen, musst Du die Augen offen halten.Um zu erkennen, musst Du sie schliessen und denken.
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : Insert windowmacro from API
FML am 19.12.2011 um 23:19 Uhr (0)
Hi,basically you need an DMObjectsFinder, a PagesFilter and a PagePropertyList.For example you want to filter all pages in your project that will have a Designation_Plant = "M1" you have do to somthing like that:DMObjectsFinder objFinder = new DMObjectsFinder(m_oProject);PagesFilter pagesFilter = new PagesFilter();PagePropertyList ppl = new PagePropertyList();ppl.DESIGNATION_PLANT = "M1";pagesFilter.SetFilteredPropertyList(ppl);Page[] pgsM1 = objFinder.GetPages(pagesFilter);foreach (Page page in pgsM1){... ...
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : projecte sichern
hast66 am 10.01.2012 um 12:53 Uhr (0)
Hi Alle,Wenn ich in eplan arbeite, mit in de Projectnavi verschiedene Projecte geöffened,(um einfach vergleichen und kopieren zu können) passiert es ab und zu aus versehen das ich sachen nicht in meinen active Project an passe aber in ein anderen Project.Fals mann es gesehen hat kann man es noch verbessern, sonst hat man ein Project änderd, ohne es zu wissen.Wie kann man am besten ein project sicher stellen?DankeGrußStefan------------------Viele Grüße aus BelgienVerzeihung für mein schwaches Deutsch
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : Pdf mit Datum exportieren
Schramme am 19.01.2012 um 10:48 Uhr (0)
Hallo,ich habe ein kleines Problem mit dem PDF export mit dem Script von Suplanus (PDF on closing project) Und zwar speichern wir die PDF Pläne in einem Ordner (Projektweise na türlich ;-) )aber ich hätte gerne noch dem Datumsstempel im Dateinamen der PDF Datei, damit nicht ausversehen eine ältere PDF Datei überschrieben wird."PROJEKTNAME_120118.pdf" z.B.Aber diese Option ist leider in dem Script nicht gegeben (kenne mich mit denScripten überhaupt nciht aus)------------------
|
In das Form EPLAN Electric P8 wechseln |
|
EPLAN Electric P8 : Änderung Höher Niveau des Geräts Name durch Edit in Table ??
RomyZ am 28.01.2012 um 16:55 Uhr (0)
Hi it would be better to change the DT via the respective NavigatorYoull find it via Project data. There should be a point for your devices where youre able to open a navigator. If you open this, you can change the DT of one device or a whole terminal block for the whole project.Besser ist es das BMK über den Betriebsmittelnavigator zu ändernProjektdaten Betriebsmittel NavigatorDort kannst du dann dein BMK für ein Gerät oder eine Klemmleiste für das ganze Projet ändern------------------Romy
|
In das Form EPLAN Electric P8 wechseln |