<?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 VDS - Numbering Schemes in Vault Customization Forum</title>
    <link>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13792741#M13003</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I wanted to display all active number schemes, displaying the default first. That works. But I don't get the 'None' displayed.&lt;BR /&gt;My code:&lt;/P&gt;&lt;DIV&gt;$_FilteredNumSchems = @()&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$_Default = $numSchems | Where-Object { $_.IsDflt -eq $true }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$_FilteredNumSchems += ($_Default) | Sort-Object&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if ($Prop["_NumSchm"].Value) { $Prop["_NumSchm"].Value = $_FilteredNumSchems[0].Name } #note - functional dialogs don't have the property _NumSchm, therefore we conditionally set the value&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$dsWindow.FindName("NumSchms").IsEnabled = $true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$dsWindow.FindName("NumSchms").SelectedValue = $_Default.Name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;#add the "None" scheme to allow user interactive file name input&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$noneNumSchm = New-Object 'Autodesk.Connectivity.WebServices.NumSchm'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$noneNumSchm.Name = $UIString["LBL77"] # None&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$Prop["_NumSchm"].Value = $_default.Name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;return $numSchems&lt;BR /&gt;&lt;BR /&gt;I found a few posts but can't find the solution.&lt;BR /&gt;Can someone help me without completely rebuilding the CodeBlock?&lt;/DIV&gt;</description>
    <pubDate>Tue, 02 Sep 2025 12:16:12 GMT</pubDate>
    <dc:creator>AIT-Hermann</dc:creator>
    <dc:date>2025-09-02T12:16:12Z</dc:date>
    <item>
      <title>VDS - Numbering Schemes</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13792741#M13003</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I wanted to display all active number schemes, displaying the default first. That works. But I don't get the 'None' displayed.&lt;BR /&gt;My code:&lt;/P&gt;&lt;DIV&gt;$_FilteredNumSchems = @()&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$_Default = $numSchems | Where-Object { $_.IsDflt -eq $true }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$_FilteredNumSchems += ($_Default) | Sort-Object&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if ($Prop["_NumSchm"].Value) { $Prop["_NumSchm"].Value = $_FilteredNumSchems[0].Name } #note - functional dialogs don't have the property _NumSchm, therefore we conditionally set the value&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$dsWindow.FindName("NumSchms").IsEnabled = $true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$dsWindow.FindName("NumSchms").SelectedValue = $_Default.Name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;#add the "None" scheme to allow user interactive file name input&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$noneNumSchm = New-Object 'Autodesk.Connectivity.WebServices.NumSchm'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$noneNumSchm.Name = $UIString["LBL77"] # None&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$Prop["_NumSchm"].Value = $_default.Name&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;return $numSchems&lt;BR /&gt;&lt;BR /&gt;I found a few posts but can't find the solution.&lt;BR /&gt;Can someone help me without completely rebuilding the CodeBlock?&lt;/DIV&gt;</description>
      <pubDate>Tue, 02 Sep 2025 12:16:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13792741#M13003</guid>
      <dc:creator>AIT-Hermann</dc:creator>
      <dc:date>2025-09-02T12:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: VDS - Numbering Schemes</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13792833#M13004</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9879095"&gt;@AIT-Hermann&lt;/a&gt;&amp;nbsp;: you must add the $noneNumSchm to the list of numbering schemes before return it; compare the full code sample here:&amp;nbsp;&lt;A href="https://github.com/koechlm/VDS-Sample-Configurations-2026/blob/master/VDS-MFG-Sample/CAD.Custom/addins/ADSK.QS.Default.ps1#L619" target="_blank"&gt;VDS-Sample-Configurations-2026/VDS-MFG-Sample/CAD.Custom/addins/ADSK.QS.Default.ps1 at master · koechlm/VDS-Sample-Configurations-2026&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 12:55:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13792833#M13004</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2025-09-02T12:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: VDS - Numbering Schemes</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13792858#M13005</link>
      <description>&lt;P&gt;Hi Markus,&lt;/P&gt;&lt;P&gt;i had used like this.&lt;/P&gt;&lt;P&gt;But when I use the code in this way, only the default numbering scheme is displayed and 'None'.&lt;BR /&gt;All others activated in Vault are missing.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 13:05:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13792858#M13005</guid>
      <dc:creator>AIT-Hermann</dc:creator>
      <dc:date>2025-09-02T13:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: VDS - Numbering Schemes</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13793018#M13009</link>
      <description>&lt;P&gt;Hi Michael,&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9879095"&gt;@AIT-Hermann&lt;/a&gt;&amp;nbsp;: that's the intent of the list&amp;nbsp;$_FilteredNumSchems. You could skip filtering and add the "None" scheme to the full list like this:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;$numSchems += $noneNumSchm
return $numSchems&lt;/LI-CODE&gt;
&lt;P&gt;Don't forget to return the unfiltered list of schemes instead of the filtered ones. My code returns the filtered only.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 14:34:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13793018#M13009</guid>
      <dc:creator>Markus.Koechl</dc:creator>
      <dc:date>2025-09-02T14:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: VDS - Numbering Schemes</title>
      <link>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13794034#M13012</link>
      <description>&lt;P&gt;That is exactly the solution.&lt;BR /&gt;Thank you very much.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Sep 2025 06:51:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vault-customization-forum/vds-numbering-schemes/m-p/13794034#M13012</guid>
      <dc:creator>AIT-Hermann</dc:creator>
      <dc:date>2025-09-03T06:51:40Z</dc:date>
    </item>
  </channel>
</rss>

