<?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 Re: Create Multi-value parameter with iLogic in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3785808#M136515</link>
    <description>&lt;P&gt;To be honest, I looked, and looked, and looked, but I could not find any real hints as to where that option is. Why exactly do you need to set that up? If the user has a choice in what the parameter can be, why not either prompt them for input, or leave it blank to let them fill out?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Perhaps someone else can shine some light on that option.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Feb 2013 03:28:54 GMT</pubDate>
    <dc:creator>MegaJerk</dc:creator>
    <dc:date>2013-02-21T03:28:54Z</dc:date>
    <item>
      <title>Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3438973#M136505</link>
      <description>&lt;P&gt;Is there a way to create a multi-value parameter with ilogic?&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2012 13:58:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3438973#M136505</guid>
      <dc:creator>Lance127</dc:creator>
      <dc:date>2012-05-01T13:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3439339#M136506</link>
      <description>&lt;P&gt;I use something like this ::&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;Imports  Inventor.UnitsTypeEnum


Dim oPartDoc As Document
oPartDoc = ThisDoc.Document

If oPartDoc.DocumentType = kPartDocumentObject Then&lt;BR /&gt;
	Dim oPartCompDef As PartComponentDefinition
		oPartCompDef = oPartDoc.ComponentDefinition
		&lt;BR /&gt;Dim oParams As Parameters
		oParams=oPartCompDef.Parameters
				
		Dim oUserParams As UserParameters
		oUserParams=oParams.UserParameters       
		
		Dim oAwesomeParameter As Parameter                     
				
		Try
			otester = oUserParams.Item("AwesomeParameter")
			Catch
oInsulationType=oUserParams.AddByValue("AwesomeParameter", "Option1", kTextUnits) 
MultiValue.SetList("AwesomeParameter", "Option1", "Option2", "Option3", "Option4")
			End Try
            End If

Parameter.Param("AwesomeParameter").ExposedAsProperty = False
Parameter.Param("AwesomeParameter").IsKey = True&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Also. A list of enums (for unit types) :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Public Enum UnitsTypeEnum
  kUnitlessUnits = 11265
  kDefaultDisplayLengthUnits = 11266
  kDatabaseLengthUnits = 11267
  kCentimeterLengthUnits = 11268
  kMillimeterLengthUnits = 11269
  kMeterLengthUnits = 11270
  kMicronLengthUnits = 11271
  kInchLengthUnits = 11272
  kFootLengthUnits = 11273
  kYardLengthUnits = 11274
  kMileLengthUnits = 11275
  kDefaultDisplayAngleUnits = 11276
  kDatabaseAngleUnits = 11277
  kRadianAngleUnits = 11278
  kDegreeAngleUnits = 11279
  kGradAngleUnits = 11280
  kDefaultDisplayMassUnits = 11281
  kDatabaseMassUnits = 11282
  kKilogramMassUnits = 11283
  kGramMassUnits = 11284
  kSlugMassUnits = 11285
  kLbMassMassUnits = 11286
  kOunceMassUnits = 11287
  kDefaultDisplayTimeUnits = 11288
  kDatabaseTimeUnits = 11289
  kSecondTimeUnits = 11290
  kMinuteTimeUnits = 11291
  kHourTimeUnits = 11292
  kDefaultDisplayTemperatureUnits = 11293
  kDatabaseTemperatureUnits = 11294
  kKelvinTemperatureUnits = 11295
  kCelsiusTemperatureUnits = 11296
  kFahrenheitTemperatureUnits = 11297
  kMetersPerSecondSpeedUnits = 11298
  kFeetPerSecondSpeedUnits = 11299
  kMilesPerHourSpeedUnits = 11300
  kAcreAreaUnits = 11301
  kLiterVolumeUnits = 11302
  kGallonVolumeUnits = 11303
  kQuartVolumeUnits = 11304
  kPintVolumeUnits = 11305
  kCupVolumeUnits = 11306
  kOunceVolumeUnits = 11307
  kPascalPressureUnits = 11308
  kPSIPressureUnits = 11309
  kKSIPressureUnits = 11310
  kNewtonForceUnits = 11311
  kDyneForceUnits = 11312
  kLbForceUnits = 11313
  kOunceForceUnits = 11314
  kWattPowerUnits = 11315
  kHorsePowerPowerUnits = 11316
  kJouleWorkUnits = 11317
  kErgWorkUnits = 11318
  kCalorieWorkUnits = 11319
  kBTUWorkUnits = 11320
  kRPMAngularVelocityUnits = 11321
  kCompositeUnits = 11322
  kNauticalMileLengthUnits = 11323
  kMilLengthUnits = 11324
  kSteradianAngleUnits = 11325
  kCircularMilAreaUnits = 11326
  kAmpElectricalCurrentUnits = 11327
  kVoltElectricalVoltageUnits = 11328
  kOhmElectricalResistanceUnits = 11329
  kCoulombElectricalChargeUnits = 11330
  kFaradElectricalCapacitanceUnits = 11331
  kSiemensElectricalConductanceUnits = 11332
  kmhoElectricalConductanceUnits = 11333
  kWeberMagneticFluxUnits = 11334
  kMaxwellMagneticFluxUnits = 11335
  kTeslaMagneticInductionUnits = 11336
  kGammaMagneticInductionUnits = 11337
  kGaussMagneticInductionUnits = 11338
  kHenryElectricalInductanceUnits = 11339
  kOerstedMagneticInductionUnits = 11340
  kHertzFrequencyUnits = 11341
  kCandelaLuminousIntensityUnits = 11342
  kLumenLuminousFluxUnits = 11343
  kLuxIlluminationUnits = 11344
  kMoleSubstanceUnits = 11345
  kTextUnits = 11346
  kBooleanUnits = 11347
End Enum&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;*Edit : Code formatting will seem a bit strange, but I wanted those lines to be full lines instead of broken! &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2012 16:38:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3439339#M136506</guid>
      <dc:creator>MegaJerk</dc:creator>
      <dc:date>2012-05-01T16:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3439687#M136507</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Not sure if i would have a use for your rule, but i wanted to try it out.&lt;/P&gt;&lt;P&gt;I get a error on the line&lt;/P&gt;&lt;P&gt;oInsulationType&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;=&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#800000" size="3"&gt;&lt;FONT color="#800000" size="3"&gt;oUserParams.AddByValue&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;(&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#008080" size="3"&gt;&lt;FONT color="#008080" size="3"&gt;"AwesomeParameter"&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="3"&gt;, &lt;/FONT&gt;&lt;FONT color="#008080" size="3"&gt;&lt;FONT color="#008080" size="3"&gt;"Option1"&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="3"&gt;, &lt;/FONT&gt;&lt;FONT color="#800000" size="3"&gt;&lt;FONT color="#800000" size="3"&gt;kTextUnits&lt;/FONT&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;it wants to convert Option1 from a string to a double..........any ideas?&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2012 19:53:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3439687#M136507</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-05-01T19:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3439843#M136508</link>
      <description>&lt;P&gt;Hi swordmaster,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed you stated you're using Inventor 2010.&amp;nbsp; I'm guessing that is the issue, since Text parameters were not added until Inventor 2011.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As an alternative you might be able to use something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;oStringArray = new string(){"Pinched", "Drilled", "Milled (2 step)", "EDM"}

oList = InputListBox("Select a feature type", oStringArray, "Punched", "iLogic", "Available Feature Types")

MessageBox.Show(oList, "ilogic")&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2012 21:48:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3439843#M136508</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2012-05-01T21:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3440509#M136509</link>
      <description>&lt;P&gt;Hello Curtis,&lt;/P&gt;&lt;P&gt;Yes i use inv 2009 (work) and 2010 (home) !&lt;/P&gt;&lt;P&gt;I should have remembered about not being able to create string parameters.&lt;/P&gt;&lt;P&gt;However the original question was "how to create multi-value parameters with ilogic" and I can create a&lt;/P&gt;&lt;P&gt;ilogic parameter from the ilogic parameter editor , this allows me to choose from types User, String or Boolean.&lt;/P&gt;&lt;P&gt;So i believe the code will work with a little "tweaking" so that it creates a ilogic not a user parameter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for the reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 May 2012 12:27:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3440509#M136509</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-05-02T12:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3440515#M136510</link>
      <description>&lt;P&gt;Thanks, that helps a lot. I knew how to make a text parameter and for some reason thought that it had to be a multi-value list at creation. it never occured to me to try just adding the list afterwards.&lt;/P&gt;</description>
      <pubDate>Wed, 02 May 2012 12:33:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3440515#M136510</guid>
      <dc:creator>Lance127</dc:creator>
      <dc:date>2012-05-02T12:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3783972#M136511</link>
      <description>&lt;P&gt;Hi &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this rule work really great in text unit&amp;nbsp;but i try to put my new parameter in inch?&lt;/P&gt;&lt;P&gt;This is my try, sorry for my horrible english &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but dont work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Imports&amp;nbsp; Inventor.UnitsTypeEnum&lt;BR /&gt;Dim oPartDoc As Document&lt;BR /&gt;oPartDoc = ThisDoc.Document&lt;BR /&gt;If oPartDoc.DocumentType = kPartDocumentObject Then&lt;BR /&gt;Dim oPartCompDef As PartComponentDefinition&lt;BR /&gt;oPartCompDef = oPartDoc.ComponentDefinition&lt;BR /&gt;Dim oParams As Parameters&lt;BR /&gt;oParams=oPartCompDef.Parameters&lt;BR /&gt;Dim oUserParams As UserParameters&lt;BR /&gt;oUserParams=oParams.UserParameters&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Dim oAwesomeParameter As Parameter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try&lt;BR /&gt;otester = oUserParams.Item("ÉPAISSEUR")&lt;BR /&gt;Catch&lt;BR /&gt;oInsulationType=oUserParams.AddByValue("ÉPAISSEUR", "11/16", kInchLengthUnits)&lt;BR /&gt;MultiValue.SetList("ÉPAISSEUR", "1/32", "1/16", "1/8", "1/4", "3/8", "7/16", "1/2", "9/16", "5/8", "11/16", "3/4", "13/16", "7/8", "1", "1 1/4", "1 3/8", "1 1/2")&lt;BR /&gt;End Try&lt;/P&gt;&lt;P&gt;End If&lt;BR /&gt;Parameter.Param("ÉPAISSEUR").ExposedAsProperty = False&lt;BR /&gt;Parameter.Param("ÉPAISSEUR").IsKey = True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2013 14:11:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3783972#M136511</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-19T14:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3784122#M136512</link>
      <description>&lt;P&gt;another question &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it'S possible to add a &amp;lt;custom value&amp;gt; in MultiValue.SetList&lt;/P&gt;&lt;P&gt;ex.:&lt;/P&gt;&lt;P&gt;MultiValue.SetList("CHANTS", "AUCUN", "1C", "1L", "1L-1C", "1L-2C", "2L", "2L-1C", "2L-2C", &amp;lt;custom value&amp;gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks all &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;!-- EndFragment --&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2013 16:38:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3784122#M136512</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-19T16:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3784936#M136513</link>
      <description>&lt;P&gt;If you want to add an Inch based Multivalue list, then you can do so using this method :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Imports  Inventor.UnitsTypeEnum


Dim oPartDoc As Document
oPartDoc = ThisDoc.Document

If oPartDoc.DocumentType = kPartDocumentObject Then

	Dim oPartCompDef As PartComponentDefinition
	oPartCompDef = oPartDoc.ComponentDefinition
		
	Dim oParams As Parameters
	oParams=oPartCompDef.Parameters
				
	Dim oUserParams As UserParameters
	oUserParams=oParams.UserParameters       
		
	Dim oAwesomeParameter As Parameter                     
				
	Try
		otester = oUserParams.Item("InchParameter")
		Catch
		oInsulationType=oUserParams.AddByValue("InchParameter", 1/16*2.54, kInchLengthUnits ) 
		MultiValue.SetList("InchParameter", 1/16, 3/16, 5/16, 7/16, 9/16)
	End Try
End If

Parameter.Param("InchParameter").ExposedAsProperty = False
Parameter.Param("InchParameter").IsKey = True&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to add custom values, you can, BUT they will not work correctly if the parameter itself is of a different unit type! A parameter with kInchLengthUnits, will not enjoy if you select text from the multivalue list (even though it will allow you to put it there).&lt;BR /&gt;&lt;BR /&gt;If you need to add numbers and text, then I would suggest keeping kTextUnits and use a Select Case statement if there will only be a handful of selectable options.&lt;BR /&gt;&lt;BR /&gt;Side note: when you put things in quotes (“11/16” or &amp;nbsp;“400*2” or “Jimmy”) the compiler interprets that as text input. That is why you were having your problem above.&lt;BR /&gt;&lt;BR /&gt;Side note Part 2 : Do you need to have the value show as “11/16” instead of .6875? If not, then you could just make it a MultivalueList text parameter (“.6875”, “.875”, “Some Text Here”) and use the&lt;/P&gt;&lt;P&gt;IsNumeric(Parameter) method to check if the selection is a valid number or not. Using IsNumeric on an expresion like “11/16” returns false, so if you pre-converted them out of fraction to decimal, it may help you in the long run.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2013 13:24:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3784936#M136513</guid>
      <dc:creator>MegaJerk</dc:creator>
      <dc:date>2013-02-20T13:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3785288#M136514</link>
      <description>&lt;P&gt;ok i understand, but what is the right rule to tell in my multivalue parameter&amp;nbsp;the &amp;lt;custom value&amp;gt;??&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2013 17:25:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3785288#M136514</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-20T17:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3785808#M136515</link>
      <description>&lt;P&gt;To be honest, I looked, and looked, and looked, but I could not find any real hints as to where that option is. Why exactly do you need to set that up? If the user has a choice in what the parameter can be, why not either prompt them for input, or leave it blank to let them fill out?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Perhaps someone else can shine some light on that option.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2013 03:28:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3785808#M136515</guid>
      <dc:creator>MegaJerk</dc:creator>
      <dc:date>2013-02-21T03:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3790543#M136516</link>
      <description>&lt;P&gt;Thank's for your time &lt;SPAN class="login-bold"&gt;Megajerk&lt;/SPAN&gt;&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;maybe anybody have the solution one day &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 17:27:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/3790543#M136516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-26T17:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/8627545#M136517</link>
      <description>&lt;P&gt;Hi, all,&lt;/P&gt;
&lt;P&gt;it is the same for ipt and iam or not?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 13:28:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/8627545#M136517</guid>
      <dc:creator>jan.kubeczka</dc:creator>
      <dc:date>2019-02-28T13:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/8627741#M136518</link>
      <description>&lt;P&gt;I no longer really work with Inventor, but I imagine that because everything in the above code is so generic, it should just be a matter of changing&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;kPartDocumentObject&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;into&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;kAssemblyDocumentObject&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Create a new Assembly File and give it a shot!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 14:29:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/8627741#M136518</guid>
      <dc:creator>MegaJerk</dc:creator>
      <dc:date>2019-02-28T14:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/8629469#M136519</link>
      <description>&lt;P&gt;Thank you very much. Best regards.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 06:02:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/8629469#M136519</guid>
      <dc:creator>jan.kubeczka</dc:creator>
      <dc:date>2019-03-01T06:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/8629497#M136520</link>
      <description>&lt;P&gt;Hi, MegaJerk&lt;/P&gt;
&lt;P&gt;I read data from table in excel to my oMyArray. I can't to insert it to multi-value parameter:&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;oMyArray&lt;/SPAN&gt; = &lt;SPAN&gt;GoExcel&lt;/SPAN&gt;.&lt;SPAN&gt;CellValues&lt;/SPAN&gt;(&lt;SPAN&gt;"A2"&lt;/SPAN&gt;, &lt;SPAN&gt;"A"&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;LastRowNumber&lt;/SPAN&gt;)&lt;/PRE&gt;
&lt;PRE&gt;&lt;SPAN&gt;MultiValue&lt;/SPAN&gt;.&lt;SPAN&gt;SetList&lt;/SPAN&gt;(&lt;SPAN&gt;"PROJEKT_VAULT"&lt;/SPAN&gt;, &lt;SPAN&gt;oMyArray&lt;/SPAN&gt;)&lt;/PRE&gt;
&lt;P&gt;Can you help me? Thanks&lt;/P&gt;
&lt;P&gt;Jan&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 06:26:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/8629497#M136520</guid>
      <dc:creator>jan.kubeczka</dc:creator>
      <dc:date>2019-03-01T06:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/9704678#M136521</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1805251"&gt;@jan.kubeczka&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Standard function in iLogic, see SNIPPETS in EXCEL DATA LINKS folder:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MultiValue.List("d0") = GoExcel.CellValues("filename.xls", "Sheet1", "A2", "A10")&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 14:03:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/9704678#M136521</guid>
      <dc:creator>Bram_Baars</dc:creator>
      <dc:date>2020-08-21T14:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/10120584#M136522</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Upper rule works very good for Part. How to modified it for assembly. Upper help with change&amp;nbsp;&lt;SPAN&gt;kPartDocumentObject&amp;nbsp;&lt;/SPAN&gt;into&amp;nbsp;&lt;SPAN&gt;kAssemblyDocumentObject doesn't work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 13:55:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/10120584#M136522</guid>
      <dc:creator>Lukasz.Dudkowski</dc:creator>
      <dc:date>2021-03-01T13:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/12007102#M136523</link>
      <description>&lt;P&gt;I'm trying to do something similar but with an IDW file instead of a part file. Trying to navigate my way through editing the first accepted code to change things from a part file to a drawing file but not having much luck finding the right snippets to use in the ilogic editor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm trying to create is a text-based user parameter named "TYPE_OF_DWG" and the multi-value text selections being:&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;ASSEMBLY DETAILS&lt;/LI&gt;&lt;LI&gt;CONTROL DETAILS&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;STEEL DETAILS&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a global form that allows the user to select the multi-value parameter. I'm task with revamping all of the ETO department drawings with a new/updated border which includes this form and multi-value parameter. &lt;STRONG&gt;Any help would be greatly appreciated!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="parameter.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1222929iECCC89A7A285213E/image-size/large?v=v2&amp;amp;px=999" role="button" title="parameter.jpg" alt="parameter.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 13:32:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/12007102#M136523</guid>
      <dc:creator>kwilson_design</dc:creator>
      <dc:date>2023-06-02T13:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multi-value parameter with iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/12068659#M136524</link>
      <description>Hi Kenny,&lt;BR /&gt;&lt;BR /&gt;Out of curiosity, did you find a solution to this?&lt;BR /&gt;I am trying to do a very identical thing, but I am very awful at iLogic &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Thu, 29 Jun 2023 09:18:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/create-multi-value-parameter-with-ilogic/m-p/12068659#M136524</guid>
      <dc:creator>jltw7PSW2</dc:creator>
      <dc:date>2023-06-29T09:18:38Z</dc:date>
    </item>
  </channel>
</rss>

