<?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>topic 29 MVO display for custom Doors and WiIndows. in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/29-MVO-display-for-custom-Doors-and-WiIndows/m-p/703409#M8458</link>
    <description>&lt;P&gt;I mostly have a fix for proper MVO display for Doors and Windows.&amp;nbsp; There is an error someplace in the Graphisoft system that returns the exact same value for Full, and Simplified with sash.&amp;nbsp; Both return 6, but Simplified with sash should return 8 and full should return 6.&amp;nbsp;&amp;nbsp; The values are set correctly in their object DWS_MMVOSettings_USA.gsm but it is not transmitting properly.&lt;BR /&gt;&lt;BR /&gt;You will need to select your translations for the old Detailed, Medium, and Simple.&amp;nbsp; &amp;nbsp;Below are the codes and the correct lookup.&amp;nbsp; &amp;nbsp;I translate to my needs rather than rewriting all the code at this point for the new options.&amp;nbsp; If you put a line in your master script: !&lt;SPAN&gt;DWS_MVOSettings_USA then highlight and click on the &amp;lt;/&amp;gt; icon to open the object, you can test various options and then look back at the parameter list to see the number that is set.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;LI-CODE lang="markup"&gt;! iDWDet2D, MVODetlevel2D
WIN2D_1LIN                  = 1
WIN2D_2LIN                  = 2
WIN2D_2LINFRAMES            = 3
WIN2D_GLASS1LIN_NOSASH      = 4
WIN2D_GLASS1LIN_SASH_NOACC  = 8
WIN2D_GLASS1LIN_SASH        = 5
WIN2D_GLASS1LIN_REBATE      = 6
WIN2D_GLASS2LIN_REBATE      = 7

if P_Det_Level = "by MVO" then
    MVO_2DDetail = 0
    _bSuccess = LIBRARYGLOBAL("DWS_MVOSettings_USA", "iDoor2DDetlevel", MVO_2DDetail)
    if _bSuccess &amp;gt; 0 then
        if MVO_2DDetail = 11 then
            Det_Level = "Detailed"
            No_Trim = 0
        endif
        if MVO_2DDetail = 10 then
            Det_Level = "Detailed"  !my medium
            No_Trim = 1
        endif
        if MVO_2DDetail = 9 or MVO_2DDetail = 1 then
            Det_Level = "Simple"
            No_Trim = 0
        endif
    else
        Det_Level = "Simple"
        No_Trim = 0
    endif
endif&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;For windows, which are not completely functional as described above, the lookup is similar, but a different parameter is checked.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;LI-CODE lang="markup"&gt;if P_Det_Level = "by MVO" then
    MVO_2DDetail = 0
    _bSuccess = LIBRARYGLOBAL("DWS_MVOSettings_USA", "iWindow2DDetlevel", MVO_2DDetail)
    if _bSuccess &amp;gt; 0 then
        if MVO_2DDetail = 6 then
            Det_Level = "Detailed"
            No_Trim = 0
        endif
        if MVO_2DDetail = 8 then
            Det_Level = "Detailed"  !my medium
            No_Trim = 1
        endif
        if MVO_2DDetail = 1 then
            Det_Level = "Simple"
            No_Trim = 0
        endif
    else
        Det_Level = "Simple"
        No_Trim = 0
    endif
endif&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;I hope this helps.&amp;nbsp; &amp;nbsp;Grapisoft, please update your documentation immediately (you have had a year) and also fix the window error.&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" color="grey"&gt;Operating system used: &lt;EM&gt;Windows 11&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Sun, 24 May 2026 17:53:57 GMT</pubDate>
    <dc:creator>jp</dc:creator>
    <dc:date>2026-05-24T17:53:57Z</dc:date>
    <item>
      <title>29 MVO display for custom Doors and WiIndows.</title>
      <link>https://community.graphisoft.com/t5/GDL/29-MVO-display-for-custom-Doors-and-WiIndows/m-p/703409#M8458</link>
      <description>&lt;P&gt;I mostly have a fix for proper MVO display for Doors and Windows.&amp;nbsp; There is an error someplace in the Graphisoft system that returns the exact same value for Full, and Simplified with sash.&amp;nbsp; Both return 6, but Simplified with sash should return 8 and full should return 6.&amp;nbsp;&amp;nbsp; The values are set correctly in their object DWS_MMVOSettings_USA.gsm but it is not transmitting properly.&lt;BR /&gt;&lt;BR /&gt;You will need to select your translations for the old Detailed, Medium, and Simple.&amp;nbsp; &amp;nbsp;Below are the codes and the correct lookup.&amp;nbsp; &amp;nbsp;I translate to my needs rather than rewriting all the code at this point for the new options.&amp;nbsp; If you put a line in your master script: !&lt;SPAN&gt;DWS_MVOSettings_USA then highlight and click on the &amp;lt;/&amp;gt; icon to open the object, you can test various options and then look back at the parameter list to see the number that is set.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;LI-CODE lang="markup"&gt;! iDWDet2D, MVODetlevel2D
WIN2D_1LIN                  = 1
WIN2D_2LIN                  = 2
WIN2D_2LINFRAMES            = 3
WIN2D_GLASS1LIN_NOSASH      = 4
WIN2D_GLASS1LIN_SASH_NOACC  = 8
WIN2D_GLASS1LIN_SASH        = 5
WIN2D_GLASS1LIN_REBATE      = 6
WIN2D_GLASS2LIN_REBATE      = 7

if P_Det_Level = "by MVO" then
    MVO_2DDetail = 0
    _bSuccess = LIBRARYGLOBAL("DWS_MVOSettings_USA", "iDoor2DDetlevel", MVO_2DDetail)
    if _bSuccess &amp;gt; 0 then
        if MVO_2DDetail = 11 then
            Det_Level = "Detailed"
            No_Trim = 0
        endif
        if MVO_2DDetail = 10 then
            Det_Level = "Detailed"  !my medium
            No_Trim = 1
        endif
        if MVO_2DDetail = 9 or MVO_2DDetail = 1 then
            Det_Level = "Simple"
            No_Trim = 0
        endif
    else
        Det_Level = "Simple"
        No_Trim = 0
    endif
endif&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;For windows, which are not completely functional as described above, the lookup is similar, but a different parameter is checked.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;LI-CODE lang="markup"&gt;if P_Det_Level = "by MVO" then
    MVO_2DDetail = 0
    _bSuccess = LIBRARYGLOBAL("DWS_MVOSettings_USA", "iWindow2DDetlevel", MVO_2DDetail)
    if _bSuccess &amp;gt; 0 then
        if MVO_2DDetail = 6 then
            Det_Level = "Detailed"
            No_Trim = 0
        endif
        if MVO_2DDetail = 8 then
            Det_Level = "Detailed"  !my medium
            No_Trim = 1
        endif
        if MVO_2DDetail = 1 then
            Det_Level = "Simple"
            No_Trim = 0
        endif
    else
        Det_Level = "Simple"
        No_Trim = 0
    endif
endif&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;I hope this helps.&amp;nbsp; &amp;nbsp;Grapisoft, please update your documentation immediately (you have had a year) and also fix the window error.&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" color="grey"&gt;Operating system used: &lt;EM&gt;Windows 11&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 24 May 2026 17:53:57 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/29-MVO-display-for-custom-Doors-and-WiIndows/m-p/703409#M8458</guid>
      <dc:creator>jp</dc:creator>
      <dc:date>2026-05-24T17:53:57Z</dc:date>
    </item>
  </channel>
</rss>

