<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Thema "Re: Variablen &amp;quot;verknüpfen&amp;quot;" in Programmierung</title>
    <link>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550663#M6359</link>
    <description>Die alternative UI-Version:&lt;BR /&gt;&lt;PRE&gt;UI_DIALOG "GDL-Objekt", 444,266&lt;BR /&gt;&lt;BR /&gt;uiX = 120   ! Position/Spalte Eingabefelder&lt;BR /&gt;&lt;BR /&gt;UI_OUTFIELD "Breite:", 0,0, uiX, 15&lt;BR /&gt;UI_INFIELD "A", uiX, 0, 60, 19&lt;BR /&gt;&lt;BR /&gt;UI_OUTFIELD "Länge:", 0,20, uiX, 15&lt;BR /&gt;UI_INFIELD "B", uiX, 20, 60, 19&lt;/PRE&gt;</description>
    <pubDate>Sat, 13 May 2017 09:18:38 GMT</pubDate>
    <dc:creator>Frank Beister</dc:creator>
    <dc:date>2017-05-13T09:18:38Z</dc:date>
    <item>
      <title>Variablen "verknüpfen"</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550660#M6356</link>
      <description>Hallo zusammen,&lt;BR /&gt;&lt;BR /&gt;ich beginne gerade, mich wieder ein wenig mit GDL zu beschäftigen und habe folgende (Anfänger)Frage.&lt;BR /&gt;&lt;BR /&gt;Ich habe zwei numerische Variablen laenge und breite und möchte diese mit den voreingestellten Parametern A (Maß 1) und B (Maß 2) verknüpfen.&lt;BR /&gt;Für meine Variablen habe ich ebenfalls Parameter angelegt.&lt;BR /&gt;&lt;BR /&gt;Ziel ist es, dass ich sowohl im Obres in meinen "Individuellen Einstellungen" als auch in der Werkzeugleiste die Variablen laenge und breite eingeben kann.&lt;BR /&gt;&lt;BR /&gt;Danke und Gruß&lt;BR /&gt;martin</description>
      <pubDate>Fri, 12 May 2017 14:49:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550660#M6356</guid>
      <dc:creator>mac_martin</dc:creator>
      <dc:date>2017-05-12T14:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Variablen "verknüpfen"</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550661#M6357</link>
      <description>Länge und Breite eines Objektes sind die Parameter A und B.&lt;BR /&gt;Diese kannst Du unter "individuelle Einstellungen" nur anzeigen lassen, wenn du ein graphisches User Interface erzeugst. Das ist für den Anfang nicht hart, aber viel Aufwand.&lt;BR /&gt;&lt;BR /&gt;Wenn die Werte unbedingt in der Liste unten stehen müssen, kannst Du dafür neue Parameter anlegen (z.B. X und Y) und entweder A und B ignorieren&lt;BR /&gt;&lt;PRE&gt;LOCK "A", "B"&lt;BR /&gt;HIDEPARAMETER "A", "B"&lt;/PRE&gt;&lt;BR /&gt;oder&lt;BR /&gt;sie im Parameter Skript parallel schalten:&lt;BR /&gt;&lt;PRE&gt;IF GLOB_MODPAR_NAME = "A" THEN PARAMETERS X = A&lt;BR /&gt;IF GLOB_MODPAR_NAME = "B" THEN PARAMETERS Y = B&lt;BR /&gt;IF GLOB_MODPAR_NAME = "X" THEN PARAMETERS A = X&lt;BR /&gt;IF GLOB_MODPAR_NAME = "Y" THEN PARAMETERS B = Y&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;(Achtung GLOB_MOD_PARA ist case sensitive!)</description>
      <pubDate>Sat, 13 May 2017 09:10:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550661#M6357</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2017-05-13T09:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Variablen "verknüpfen"</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550662#M6358</link>
      <description>Danke.&lt;BR /&gt;Werde ich gelegentlich probieren.&lt;BR /&gt;Hab zurzeit noch andere Baustellen.</description>
      <pubDate>Sat, 13 May 2017 09:12:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550662#M6358</guid>
      <dc:creator>mac_martin</dc:creator>
      <dc:date>2017-05-13T09:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Variablen "verknüpfen"</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550663#M6359</link>
      <description>Die alternative UI-Version:&lt;BR /&gt;&lt;PRE&gt;UI_DIALOG "GDL-Objekt", 444,266&lt;BR /&gt;&lt;BR /&gt;uiX = 120   ! Position/Spalte Eingabefelder&lt;BR /&gt;&lt;BR /&gt;UI_OUTFIELD "Breite:", 0,0, uiX, 15&lt;BR /&gt;UI_INFIELD "A", uiX, 0, 60, 19&lt;BR /&gt;&lt;BR /&gt;UI_OUTFIELD "Länge:", 0,20, uiX, 15&lt;BR /&gt;UI_INFIELD "B", uiX, 20, 60, 19&lt;/PRE&gt;</description>
      <pubDate>Sat, 13 May 2017 09:18:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Variablen-quot-verkn%C3%BCpfen-quot/m-p/550663#M6359</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2017-05-13T09:18:38Z</dc:date>
    </item>
  </channel>
</rss>

