Personal Data

Username:
ludecus
Joined:
2020-06-04 14:14:44
Location:
Germany / CET
Gender:
Male

Projects

  • No projects to display.

User Activity

  • Posted a comment on discussion Deutsch 🇩🇪 on CODESYS Forge

    Es scheint so, als wäre der Timestamp als ULINT kodiert. Keine Ahnung ob es funktioniert, aber du kannst ja mal versuchen mit der SysTime.Lib den Wert in ein Date_And_Time zu formatieren.

  • Posted a comment on discussion Deutsch 🇩🇪 on CODESYS Forge

    Hallo fludwig, Hierfür gibt es 2 Lösungen: Du arbeitest, wie du bereits angefangen hast, im CodeBehind. Den rTestString musst du lediglich über die DELETE beschneiden. nPosSeperator := FIND('.',rTestString); rTestString := DELETE(rTestString,LEN(rTestString)-nPosSeperator,nPosSeperator); So oder so ähnlich müsste es aussehen. Ich hab es nicht getestet. Du arbeitest im FrondEnd. Verwende einfach 2 Text Fields. Mit den State Varibales kannst du das nicht benötigte Element ausblenden. Dabei kannst du...

  • Posted a comment on discussion Deutsch 🇩🇪 on CODESYS Forge

    Hallo noob, hast du mal versucht, den Namespace der Lib bei der Deklaration anzugeben? Woher sollte der Interpreter auch wissen, dass die Struct in der Lib definiert ist. http_result : HTTP.HttpResult;

  • Posted a comment on discussion Engineering 🇬🇧 on CODESYS Forge

    I don't understand your point. Please use the dereference of a pointer to address the variables. IF _pointer<>0 THEN // check pointer has a reference _pointer^.Member_1 := TRUE; // access the variables by dereference _pointer^.Member_2 := 1; END_IF

  • Posted a comment on discussion Visualization 🇬🇧 on CODESYS Forge

    Hello mrsanderz, sorry i have no clue but maybe a option for you. Remove the Targetvisu from the application tree and use the Webvisu instead. The Webvisu could be used whenever needed. Best regards, Ludecus

  • Posted a comment on discussion Engineering 🇬🇧 on CODESYS Forge

    Thanks for your response. Unfortunately you misunderstood my needs. I was looking for a Function like ANY_TO_STRING not DINT_TO_STRING. As you can see in the attached project, the ANY-type needs to be decoded firstly in a IEC datatype.

  • Posted a comment on discussion Deutsch 🇩🇪 on CODESYS Forge

    Es scheint mir stark so, dass du die FB nicht deklarierst oder aufrufst. VAR instFb : Function_Block_A; END_VAR instFb();

  • Posted a comment on discussion Visualization 🇬🇧 on CODESYS Forge

    The simplest way to do so is to use a Frame of the CODESYS Visu Element list. https://help.codesys.com/webapp/_visu_elem_frame;product=core_visualization;version=3.5.17.0 The Frame requires a Switch frame variable as INT. Somewhere in your code, each press could increase the linked variable. BTW: Most of the Visualizations use a code behind.

View All