<?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: Reference to a non shared member requires an object reference in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019581#M39313</link>
    <description>&lt;P&gt;I noticed that too.&amp;nbsp; I'm not sure what's up with that yet.&amp;nbsp; I'll have to do more tweaking/trial/error stuff on that tomorrow.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Mar 2022 19:02:48 GMT</pubDate>
    <dc:creator>WCrihfield</dc:creator>
    <dc:date>2022-03-21T19:02:48Z</dc:date>
    <item>
      <title>Reference to a non shared member requires an object reference</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019258#M39307</link>
      <description>&lt;P&gt;I have the following code that I copied directly out of the inventor API help . It doesn't work it seems that there is a problem with accessing ThisApplication. I don't know what is wrong and quite frankly, having half the code in the help documentation not work without edits is making it very difficult to learn how to code for this program. Does anyone know how I can correct this error?&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Public&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;Main&lt;/SPAN&gt;()
    &lt;SPAN&gt;' Create a new clsSelect object.&lt;/SPAN&gt;
    &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSelect&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;New&lt;/SPAN&gt; &lt;SPAN&gt;clsSelect&lt;/SPAN&gt;

    &lt;SPAN&gt;' Call the pick method of the clsSelect object and set&lt;/SPAN&gt;
    &lt;SPAN&gt;' the filter to pick any face.&lt;/SPAN&gt;
    &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Face&lt;/SPAN&gt;
    &lt;SPAN&gt;oFace&lt;/SPAN&gt; = &lt;SPAN&gt;oSelect&lt;/SPAN&gt;.&lt;SPAN&gt;Pick&lt;/SPAN&gt;(&lt;SPAN&gt;kPartFaceFilter&lt;/SPAN&gt;)

    &lt;SPAN&gt;' Check to make sure an object was selected.&lt;/SPAN&gt;
    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Not&lt;/SPAN&gt; &lt;SPAN&gt;oFace&lt;/SPAN&gt; &lt;SPAN&gt;Is&lt;/SPAN&gt; &lt;SPAN&gt;Nothing&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
        &lt;SPAN&gt;' Display the area of the selected face.&lt;/SPAN&gt;
        &lt;SPAN&gt;MsgBox&lt;/SPAN&gt;(&lt;SPAN&gt;"Face area: "&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;oFace&lt;/SPAN&gt;.&lt;SPAN&gt;Evaluator&lt;/SPAN&gt;.&lt;SPAN&gt;Area&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;" cm^2"&lt;/SPAN&gt;)
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
	
&lt;SPAN&gt;Public&lt;/SPAN&gt; &lt;SPAN&gt;Class&lt;/SPAN&gt; &lt;SPAN&gt;clsSelect&lt;/SPAN&gt;
&lt;SPAN&gt;' Declare the event objects&lt;/SPAN&gt;
&lt;SPAN&gt;Private&lt;/SPAN&gt; &lt;SPAN&gt;WithEvents&lt;/SPAN&gt; &lt;SPAN&gt;oInteractEvents&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;InteractionEvents&lt;/SPAN&gt;
&lt;SPAN&gt;Private&lt;/SPAN&gt; &lt;SPAN&gt;WithEvents&lt;/SPAN&gt; &lt;SPAN&gt;oSelectEvents&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;SelectEvents&lt;/SPAN&gt;

&lt;SPAN&gt;' Declare a flag that's used to determine when selection stops.&lt;/SPAN&gt;
&lt;SPAN&gt;Private&lt;/SPAN&gt; &lt;SPAN&gt;bStillSelecting&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Boolean&lt;/SPAN&gt;

	&lt;SPAN&gt;Public&lt;/SPAN&gt; &lt;SPAN&gt;Function&lt;/SPAN&gt; &lt;SPAN&gt;Pick&lt;/SPAN&gt;(&lt;SPAN&gt;filter&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;SelectionFilterEnum&lt;/SPAN&gt;) &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Object&lt;/SPAN&gt;
	    &lt;SPAN&gt;' Initialize flag.&lt;/SPAN&gt;
	    &lt;SPAN&gt;bStillSelecting&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;

	    &lt;SPAN&gt;' Create an InteractionEvents object.&lt;/SPAN&gt;
	    &lt;SPAN&gt;oInteractEvents&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;CreateInteractionEvents&lt;/SPAN&gt;

	    &lt;SPAN&gt;' Ensure interaction is enabled.&lt;/SPAN&gt;
	    &lt;SPAN&gt;oInteractEvents&lt;/SPAN&gt;.&lt;SPAN&gt;InteractionDisabled&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;

	    &lt;SPAN&gt;' Set a reference to the select events.&lt;/SPAN&gt;
	    &lt;SPAN&gt;oSelectEvents&lt;/SPAN&gt; = &lt;SPAN&gt;oInteractEvents&lt;/SPAN&gt;.&lt;SPAN&gt;SelectEvents&lt;/SPAN&gt;

	    &lt;SPAN&gt;' Set the filter using the value passed in.&lt;/SPAN&gt;
	    &lt;SPAN&gt;oSelectEvents&lt;/SPAN&gt;.&lt;SPAN&gt;AddSelectionFilter&lt;/SPAN&gt;(&lt;SPAN&gt;filter&lt;/SPAN&gt;)

	    &lt;SPAN&gt;' Start the InteractionEvents object.&lt;/SPAN&gt;
	    &lt;SPAN&gt;oInteractEvents&lt;/SPAN&gt;.&lt;SPAN&gt;Start&lt;/SPAN&gt;

	    &lt;SPAN&gt;' Loop until a selection is made.&lt;/SPAN&gt;
	    &lt;SPAN&gt;Do&lt;/SPAN&gt; &lt;SPAN&gt;While&lt;/SPAN&gt; &lt;SPAN&gt;bStillSelecting&lt;/SPAN&gt;
	        &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;UserInterfaceManager&lt;/SPAN&gt;.&lt;SPAN&gt;DoEvents&lt;/SPAN&gt;
	    &lt;SPAN&gt;Loop&lt;/SPAN&gt;

	    &lt;SPAN&gt;' Get the selected item. If more than one thing was selected,&lt;/SPAN&gt;
	    &lt;SPAN&gt;' just get the first item and ignore the rest.&lt;/SPAN&gt;
	    &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSelectedEnts&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ObjectsEnumerator&lt;/SPAN&gt;
	    &lt;SPAN&gt;oSelectedEnts&lt;/SPAN&gt; = &lt;SPAN&gt;oSelectEvents&lt;/SPAN&gt;.&lt;SPAN&gt;SelectedEntities&lt;/SPAN&gt;
	    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oSelectedEnts&lt;/SPAN&gt;.&lt;SPAN&gt;Count&lt;/SPAN&gt; &amp;gt; 0 &lt;SPAN&gt;Then&lt;/SPAN&gt;
	        &lt;SPAN&gt;Pick&lt;/SPAN&gt; = &lt;SPAN&gt;oSelectedEnts&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1)
	    &lt;SPAN&gt;Else&lt;/SPAN&gt;
	        &lt;SPAN&gt;Pick&lt;/SPAN&gt; = &lt;SPAN&gt;Nothing&lt;/SPAN&gt;
	    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

	    &lt;SPAN&gt;' Stop the InteractionEvents object.&lt;/SPAN&gt;
	    &lt;SPAN&gt;oInteractEvents&lt;/SPAN&gt;.&lt;SPAN&gt;Stop&lt;/SPAN&gt;

	    &lt;SPAN&gt;' Clean up.&lt;/SPAN&gt;
	    &lt;SPAN&gt;oSelectEvents&lt;/SPAN&gt; = &lt;SPAN&gt;Nothing&lt;/SPAN&gt;
	    &lt;SPAN&gt;oInteractEvents&lt;/SPAN&gt; = &lt;SPAN&gt;Nothing&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Function&lt;/SPAN&gt;

	&lt;SPAN&gt;Private&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;oInteractEvents_OnTerminate&lt;/SPAN&gt;()
	    &lt;SPAN&gt;' Set the flag to indicate we're done.&lt;/SPAN&gt;
	    &lt;SPAN&gt;bStillSelecting&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;

	&lt;SPAN&gt;Private&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;oSelectEvents_OnSelect&lt;/SPAN&gt;(&lt;SPAN&gt;ByVal&lt;/SPAN&gt; &lt;SPAN&gt;JustSelectedEntities&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ObjectsEnumerator&lt;/SPAN&gt;, &lt;SPAN&gt;ByVal&lt;/SPAN&gt; &lt;SPAN&gt;SelectionDevice&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;SelectionDeviceEnum&lt;/SPAN&gt;, &lt;SPAN&gt;ByVal&lt;/SPAN&gt; &lt;SPAN&gt;ModelPosition&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Point&lt;/SPAN&gt;, &lt;SPAN&gt;ByVal&lt;/SPAN&gt; &lt;SPAN&gt;ViewPosition&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Point2d&lt;/SPAN&gt;, &lt;SPAN&gt;ByVal&lt;/SPAN&gt; &lt;SPAN&gt;View&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;View&lt;/SPAN&gt;)
	    &lt;SPAN&gt;' Set the flag to indicate we're done.&lt;/SPAN&gt;
	    &lt;SPAN&gt;bStillSelecting&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Class&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 16:30:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019258#M39307</guid>
      <dc:creator>MTheDesigner</dc:creator>
      <dc:date>2022-03-21T16:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to a non shared member requires an object reference</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019339#M39308</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11920109"&gt;@MTheDesigner&lt;/a&gt;.&amp;nbsp; Can you provide a link to the sample you are talking about.&amp;nbsp; The sample I am thinking about (&lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=GUID-60F44C84-D0A6-445B-ADDB-575E3B420DC2" target="_blank" rel="noopener"&gt;Link1&lt;/A&gt;) was for allowing you to window select stuff, and that was a VBA macro code, not iLogic or vb.net.&amp;nbsp; Are you using this code within an iLogic rule, or are you using it within Visual Studio or something like that?&amp;nbsp; If you are using it in an iLogic rule, then do you have the iLogic rule option 'Straight VB Code' turned on, or off? &amp;nbsp; An iLogic rule assumes several settings in the background that you don't normally see, just to make things easier for beginners new to coding in iLogic &amp;amp; vb.net.&amp;nbsp; It assumes a Class named "ThisRule" and assumes the "Sub Main" and "End Sub", if you don't include that in your simple codes.&amp;nbsp; There are also other similar settings.&amp;nbsp; Anyways, I believe the terms like "ThisApplication" and similar are defined within that "ThisRule" already for you, by the iLogic add-in, to make life easier.&amp;nbsp; That's likely why the other Class does not know what that term means.&amp;nbsp; You can always pass the Inventor.Application object into your method, then re-declare/define a variable called "ThisApplication" within that other Class/Method somewhere, then set its value from the input variable you supplied to it, then use that "ThisApplication" variable from that point on.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 17:10:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019339#M39308</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2022-03-21T17:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to a non shared member requires an object reference</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019385#M39309</link>
      <description>Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt;, I am using the code provided in the code provided here: &lt;A href="https://help.autodesk.com/view/INVNTOR/2019/ENU/?guid=GUID-0BD48573-7193-4285-87B7-6727555D053E" target="_blank"&gt;https://help.autodesk.com/view/INVNTOR/2019/ENU/?guid=GUID-0BD48573-7193-4285-87B7-6727555D053E&lt;/A&gt;&lt;BR /&gt;I don't know what the difference between macro code and rule code is. I have only been using iLogic rules up to this point. I had no idea about the assumed class of the rule. Does that mean that I need to write the class somewhere other than a rule? Also it looks like I have Straight VB code turned off, which I believe its default state.</description>
      <pubDate>Mon, 21 Mar 2022 17:28:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019385#M39309</guid>
      <dc:creator>MTheDesigner</dc:creator>
      <dc:date>2022-03-21T17:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to a non shared member requires an object reference</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019458#M39310</link>
      <description>&lt;P&gt;No problem.&amp;nbsp; It's pretty common early on go get VBA stuff and iLogic stuff mixed up.&amp;nbsp; They are both pretty similar looking, and both stem from the same Visual Basic source coding language.&amp;nbsp; Autodesk still provides most 'samples' of code in VBA, even though they are essentially discontinuing having the VBA editor installed by default, due to security related issues.&amp;nbsp; The iLogic is an Inventor add-in and it uses VB.NET coding language as its basis.&amp;nbsp; VBA code can usually be converted to VB.NET (which can then be used in an iLogic rule) without too much trouble, but not always.&amp;nbsp; I don't recall seeing an iLogic rule version of that VBA macro sample before, but it does not look that challenging to create one.&amp;nbsp; I will see what I can do.&amp;nbsp; Someone else may beat me to it though, if they have already done this.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 18:00:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019458#M39310</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2022-03-21T18:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to a non shared member requires an object reference</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019481#M39311</link>
      <description>&lt;P&gt;Try this version out:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Class ThisRule
	Sub Main 'TestSelection()
	    ' Create a new clsSelect object.
	    Dim oSelect As New clsSelect
	
	    ' Call the pick method of the clsSelect object and set
	    ' the filter to pick any face.
	    Dim oFace As Face = oSelect.Pick(ThisApplication, kPartFaceFilter)
	
	    ' Check to make sure an object was selected.
	    If Not oFace Is Nothing Then
	        ' Display the area of the selected face.
	        MsgBox("Face area: " &amp;amp; oFace.Evaluator.Area &amp;amp; " cm^2")
	    End If
	End Sub
End Class

Class clsSelect
	' Declare the event objects
	Private WithEvents oInteractEvents As InteractionEvents
	Private WithEvents oSelectEvents As SelectEvents
	' Declare a flag that's used to determine when selection stops.
	Private bStillSelecting As Boolean

	Public Function Pick(oApp As Inventor.Application, filter As SelectionFilterEnum) As Object
		' Initialize flag.
		bStillSelecting = True
		' Create an InteractionEvents object.
		oInteractEvents = oApp.CommandManager.CreateInteractionEvents
		' Ensure interaction is enabled.
		oInteractEvents.InteractionDisabled = False
		' Set a reference to the select events.
		oSelectEvents = oInteractEvents.SelectEvents
		' Set the filter using the value passed in.
		oSelectEvents.AddSelectionFilter(filter)
		' Start the InteractionEvents object.
		oInteractEvents.Start
		' Loop until a selection is made.
		Do While bStillSelecting
			oApp.UserInterfaceManager.DoEvents
		Loop
		' Get the selected item. If more than one thing was selected,
		' just get the first item and ignore the rest.
		Dim oSelectedEnts As ObjectsEnumerator = oSelectEvents.SelectedEntities
		If oSelectedEnts.Count &amp;gt; 0 Then
			Pick = oSelectedEnts.Item(1)
		Else
			Pick = Nothing
		End If
		' Stop the InteractionEvents object.
		oInteractEvents.Stop
		' Clean up.
		oSelectEvents = Nothing
		oInteractEvents = Nothing
	End Function

	Private Sub oInteractEvents_OnTerminate()
		' Set the flag to indicate we're done.
		bStillSelecting = False
	End Sub

	Private Sub oSelectEvents_OnSelect(ByVal JustSelectedEntities As ObjectsEnumerator, ByVal SelectionDevice As SelectionDeviceEnum, ByVal ModelPosition As Point, ByVal ViewPosition As Point2d, ByVal View As View)
		' Set the flag to indicate we're done.
		bStillSelecting = False
	End Sub
End Class&lt;/LI-CODE&gt;
&lt;P&gt;If this solved your problem, or answered your question, please click &lt;SPAN&gt;&lt;STRONG&gt;ACCEPT SOLUTION&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;BR /&gt;Or, if this helped you, please click (LIKE or KUDOS) &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;.&lt;/P&gt;
&lt;P&gt;If you want and have time, I would appreciate your Vote(s) for &lt;A href="https://forums.autodesk.com/t5/forums/recentpostspage/post-type/message/interaction-style/idea/user-id/7812054/" target="_blank"&gt;My IDEAS &lt;/A&gt; :bulb: or you can Explore &lt;A href="https://knowledge.autodesk.com/profile/LTSUSR7HXMSAE/articles" target="_blank"&gt;My CONTRIBUTIONS &lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 18:09:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019481#M39311</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2022-03-21T18:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to a non shared member requires an object reference</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019495#M39312</link>
      <description>The code still doesn't work(it doesn't let me select anything) but you did solve the error I was getting that prevented it from running so thanks for that.</description>
      <pubDate>Mon, 21 Mar 2022 18:15:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019495#M39312</guid>
      <dc:creator>MTheDesigner</dc:creator>
      <dc:date>2022-03-21T18:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reference to a non shared member requires an object reference</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019581#M39313</link>
      <description>&lt;P&gt;I noticed that too.&amp;nbsp; I'm not sure what's up with that yet.&amp;nbsp; I'll have to do more tweaking/trial/error stuff on that tomorrow.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 19:02:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/reference-to-a-non-shared-member-requires-an-object-reference/m-p/11019581#M39313</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2022-03-21T19:02:48Z</dc:date>
    </item>
  </channel>
</rss>

