<?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: WaitCursor at the command line in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537967#M69429</link>
    <description>Tony Tanzillo wrote:&lt;BR /&gt;
&amp;gt; You can reference System.Windows.Forms from any app,&lt;BR /&gt;
&amp;gt; even if it doesn't use any forms or UI components.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; If for some reason you need to avoid referencing WinForms,&lt;BR /&gt;
&amp;gt; the only other option is P/Invoking the SetCursor() API&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&lt;BR /&gt;
Can you give an example with the correct namespace because when I try &lt;BR /&gt;
with: System.Windows.Forms.Cursor = Cursors.WaitCursor I'll get an error &lt;BR /&gt;
message: 'Cursor' is an type in 'Forms' and cannot be use as an expression.&lt;BR /&gt;
&lt;BR /&gt;
If I have a form I just have this code: Me.Cursor = Cursors.WaitCursor</description>
    <pubDate>Fri, 14 Aug 2009 13:19:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-08-14T13:19:14Z</dc:date>
    <item>
      <title>WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537961#M69423</link>
      <description>To display the wait cursor when using a form I use System.Windows.Forms Namespace like this (VB.NET):&lt;BR /&gt;
&lt;BR /&gt;
System.Windows.Forms.Cursor = Cursors.WaitCursor&lt;BR /&gt;
&lt;BR /&gt;
But how should I do if I don't use a form? I ask for some options from the command line and while executing my code I want to display a wait cursor (still VB.NET).</description>
      <pubDate>Tue, 11 Aug 2009 09:14:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537961#M69423</guid>
      <dc:creator>hericson</dc:creator>
      <dc:date>2009-08-11T09:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537962#M69424</link>
      <description>hericson wrote:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; But how should I do if I don't use a form?&lt;BR /&gt;
&lt;BR /&gt;
Have you considered using a ProgressMeter instead?  If you know the&lt;BR /&gt;
number of iterations it seems like a better option.&lt;BR /&gt;
&lt;BR /&gt;
Terry</description>
      <pubDate>Tue, 11 Aug 2009 14:10:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537962#M69424</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-11T14:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537963#M69425</link>
      <description>Yes, I have considered that. But I have some problems with the progress meter, testing using a simple for next loop from 1 to 100 it will count all the percents but when using in it my real case it will only show every 6 percents and I can't figure out why.&lt;BR /&gt;
Secondly I think it should be one way to show an hourglass without a form.</description>
      <pubDate>Thu, 13 Aug 2009 08:43:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537963#M69425</guid>
      <dc:creator>hericson</dc:creator>
      <dc:date>2009-08-13T08:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537964#M69426</link>
      <description>Are there only  16 or 17 loops in your real world example?</description>
      <pubDate>Thu, 13 Aug 2009 12:29:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537964#M69426</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-13T12:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537965#M69427</link>
      <description>I had over 5000 loops but I found out that the order of pm.Start and pm.SetLimit made a difference (pm.Start first) and I also had to add pm.Dispose after pm.Stop to get it to work so that's not a problem anymore.</description>
      <pubDate>Thu, 13 Aug 2009 12:59:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537965#M69427</guid>
      <dc:creator>hericson</dc:creator>
      <dc:date>2009-08-13T12:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537966#M69428</link>
      <description>You can reference System.Windows.Forms from any app,&lt;BR /&gt;
even if it doesn't use any forms or UI components.&lt;BR /&gt;
&lt;BR /&gt;
If for some reason you need to avoid referencing WinForms,&lt;BR /&gt;
the only other option is P/Invoking the SetCursor() API&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;HERICSON&gt; wrote in message news:6234752@discussion.autodesk.com...&lt;BR /&gt;
To display the wait cursor when using a form I use System.Windows.Forms &lt;BR /&gt;
Namespace like this (VB.NET):&lt;BR /&gt;
&lt;BR /&gt;
System.Windows.Forms.Cursor = Cursors.WaitCursor&lt;BR /&gt;
&lt;BR /&gt;
But how should I do if I don't use a form? I ask for some options from the &lt;BR /&gt;
command line and while executing my code I want to display a wait cursor &lt;BR /&gt;
(still VB.NET).&lt;/HERICSON&gt;</description>
      <pubDate>Thu, 13 Aug 2009 22:56:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537966#M69428</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-13T22:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537967#M69429</link>
      <description>Tony Tanzillo wrote:&lt;BR /&gt;
&amp;gt; You can reference System.Windows.Forms from any app,&lt;BR /&gt;
&amp;gt; even if it doesn't use any forms or UI components.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; If for some reason you need to avoid referencing WinForms,&lt;BR /&gt;
&amp;gt; the only other option is P/Invoking the SetCursor() API&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&lt;BR /&gt;
Can you give an example with the correct namespace because when I try &lt;BR /&gt;
with: System.Windows.Forms.Cursor = Cursors.WaitCursor I'll get an error &lt;BR /&gt;
message: 'Cursor' is an type in 'Forms' and cannot be use as an expression.&lt;BR /&gt;
&lt;BR /&gt;
If I have a form I just have this code: Me.Cursor = Cursors.WaitCursor</description>
      <pubDate>Fri, 14 Aug 2009 13:19:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537967#M69429</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-14T13:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537968#M69430</link>
      <description>Here's what I use:&lt;BR /&gt;
&lt;BR /&gt;
{code}&lt;BR /&gt;
&lt;BR /&gt;
using System.Windows.Forms;&lt;BR /&gt;
using Autodesk.AutoCAD.Runtime;&lt;BR /&gt;
&lt;BR /&gt;
namespace MyNamespace&lt;BR /&gt;
{&lt;BR /&gt;
   public class CurrentCursor : IDisposable&lt;BR /&gt;
   {&lt;BR /&gt;
      private Cursor saved = Cursor.Current;&lt;BR /&gt;
&lt;BR /&gt;
      public CurrentCursor( Cursor newCursor )&lt;BR /&gt;
      {&lt;BR /&gt;
         Cursor.Current = newCursor;&lt;BR /&gt;
      }&lt;BR /&gt;
&lt;BR /&gt;
      public void Dispose()&lt;BR /&gt;
      {&lt;BR /&gt;
         Cursor.Current = this.saved;&lt;BR /&gt;
      }&lt;BR /&gt;
   }&lt;BR /&gt;
&lt;BR /&gt;
   public class WaitCursor : CurrentCursor&lt;BR /&gt;
   {&lt;BR /&gt;
      public WaitCursor()&lt;BR /&gt;
         : base( Cursors.WaitCursor )&lt;BR /&gt;
      {&lt;BR /&gt;
      }&lt;BR /&gt;
   }&lt;BR /&gt;
&lt;BR /&gt;
   // example usage:&lt;BR /&gt;
&lt;BR /&gt;
   public class MyCommands&lt;BR /&gt;
   {&lt;BR /&gt;
      [CommandMethod("MYCOMMAND")&lt;BR /&gt;
      public static void MyCommand()&lt;BR /&gt;
      {&lt;BR /&gt;
         using( new WaitCursor() )&lt;BR /&gt;
         {&lt;BR /&gt;
            // wait cursor is visible here,&lt;BR /&gt;
            // so do what you need to do&lt;BR /&gt;
&lt;BR /&gt;
         }  // the prevous cursor is restored here.&lt;BR /&gt;
      }&lt;BR /&gt;
   }&lt;BR /&gt;
&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
{code}&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
"Hericson" &lt;HERICSON&gt; wrote in message &lt;BR /&gt;
news:6237315@discussion.autodesk.com...&lt;BR /&gt;
Tony Tanzillo wrote:&lt;BR /&gt;
&amp;gt; You can reference System.Windows.Forms from any app,&lt;BR /&gt;
&amp;gt; even if it doesn't use any forms or UI components.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; If for some reason you need to avoid referencing WinForms,&lt;BR /&gt;
&amp;gt; the only other option is P/Invoking the SetCursor() API&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&lt;BR /&gt;
Can you give an example with the correct namespace because when I try&lt;BR /&gt;
with: System.Windows.Forms.Cursor = Cursors.WaitCursor I'll get an error&lt;BR /&gt;
message: 'Cursor' is an type in 'Forms' and cannot be use as an expression.&lt;BR /&gt;
&lt;BR /&gt;
If I have a form I just have this code: Me.Cursor = Cursors.WaitCursor&lt;/HERICSON&gt;</description>
      <pubDate>Fri, 14 Aug 2009 14:48:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537968#M69430</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-14T14:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537969#M69431</link>
      <description>Sorry but I'm not able to convert your sample to VB.NET (lack of skills I guess). I think I can understand the example but not how to make the two classes into VB.NET.</description>
      <pubDate>Sat, 15 Aug 2009 12:30:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537969#M69431</guid>
      <dc:creator>hericson</dc:creator>
      <dc:date>2009-08-15T12:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537970#M69432</link>
      <description>Imports System.Windows.Forms&lt;BR /&gt;
Imports Autodesk.AutoCAD.Runtime&lt;BR /&gt;
&lt;BR /&gt;
Namespace MyNamespace&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; Public Class CurrentCursor&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Implements IDisposable&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Private saved As Cursor = Cursor.Current&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Public Sub New(ByVal newCursor As Cursor)&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Cursor.Current = newCursor&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Sub&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Public Sub Dispose()&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Cursor.Current = Me.saved&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Sub&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; End Class&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &lt;BR /&gt;
&amp;nbsp; &amp;nbsp; Public Class WaitCursor&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Inherits CurrentCursor&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Public Sub New()&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MyBase.New(Cursors.WaitCursor)&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Sub&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; End Class&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &lt;BR /&gt;
&amp;nbsp; &amp;nbsp; ' example usage:&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &lt;BR /&gt;
&amp;nbsp; &amp;nbsp; Public Class MyCommands&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;COMMANDMETHOD&gt; _&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Public Shared Sub MyCommand()&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Using New WaitCursor()&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' wait cursor is visible here,&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' so do what you need to do&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' the prevous cursor is restored here.&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Using&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Sub&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; End Class&lt;BR /&gt;
&amp;nbsp; &amp;nbsp; &lt;BR /&gt;
End Namespace&lt;/COMMANDMETHOD&gt;</description>
      <pubDate>Sun, 16 Aug 2009 01:38:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537970#M69432</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-16T01:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537971#M69433</link>
      <description>For future reference, there are a number of ways to translate C# code to&lt;BR /&gt;
VB.NET code.&lt;BR /&gt;
&lt;BR /&gt;
You can use reflector (http://www.red-gate.com/products/reflector/), or any &lt;BR /&gt;
number of online translators (google 'translate C# to VB').&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;HERICSON&gt; wrote in message news:6237829@discussion.autodesk.com...&lt;BR /&gt;
Sorry but I'm not able to convert your sample to VB.NET (lack of skills I&lt;BR /&gt;
guess). I think I can understand the example but not how to make the two&lt;BR /&gt;
classes into VB.NET.&lt;/HERICSON&gt;</description>
      <pubDate>Mon, 17 Aug 2009 05:34:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537971#M69433</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-17T05:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537972#M69434</link>
      <description>Thanks for the link.&lt;BR /&gt;
&lt;BR /&gt;
I have a problem in the code above and that is the Implements IDisposable row. It will give me an error I don't understand: &lt;BR /&gt;
&lt;BR /&gt;
Class 'CurrentCursor' must implement 'Sub Dispose()' for interface 'System.IDisposable'.</description>
      <pubDate>Mon, 17 Aug 2009 19:23:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537972#M69434</guid>
      <dc:creator>hericson</dc:creator>
      <dc:date>2009-08-17T19:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537973#M69435</link>
      <description>Change the Dispose() method to:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
        Public Sub Dispose() Implements IDisposable.Dispose&lt;BR /&gt;
            Cursor.Current = Me.saved&lt;BR /&gt;
        End Sub&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;HERICSON&gt; wrote in message news:6238441@discussion.autodesk.com...&lt;BR /&gt;
Thanks for the link.&lt;BR /&gt;
&lt;BR /&gt;
I have a problem in the code above and that is the Implements IDisposable &lt;BR /&gt;
row. It will give me an error I don't understand:&lt;BR /&gt;
&lt;BR /&gt;
Class 'CurrentCursor' must implement 'Sub Dispose()' for interface &lt;BR /&gt;
'System.IDisposable'.&lt;/HERICSON&gt;</description>
      <pubDate>Mon, 17 Aug 2009 20:32:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537973#M69435</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-17T20:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537974#M69436</link>
      <description>{code}&lt;BR /&gt;
&lt;HERICSON&gt; wrote in message news:6238441@discussion.autodesk.com...&lt;BR /&gt;
Thanks for the link.&lt;BR /&gt;
&lt;BR /&gt;
I have a problem in the code above and that is the Implements IDisposable &lt;BR /&gt;
row. It will give me an error I don't understand:&lt;BR /&gt;
&lt;BR /&gt;
Class 'CurrentCursor' must implement 'Sub Dispose()' for interface &lt;BR /&gt;
'System.IDisposable'.&lt;/HERICSON&gt;</description>
      <pubDate>Mon, 17 Aug 2009 21:07:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537974#M69436</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-17T21:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: WaitCursor at the command line</title>
      <link>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537975#M69437</link>
      <description>I hit some send button on the keyboard oops... Tony answered anyway.&lt;BR /&gt;
"Paul Richardson" &lt;PRICHARDSON&gt;&lt;LASTPOINT&gt; wrote in message &lt;BR /&gt;
news:6238509@discussion.autodesk.com...&lt;BR /&gt;
{code}&lt;BR /&gt;
&lt;HERICSON&gt; wrote in message news:6238441@discussion.autodesk.com...&lt;BR /&gt;
Thanks for the link.&lt;BR /&gt;
&lt;BR /&gt;
I have a problem in the code above and that is the Implements IDisposable&lt;BR /&gt;
row. It will give me an error I don't understand:&lt;BR /&gt;
&lt;BR /&gt;
Class 'CurrentCursor' must implement 'Sub Dispose()' for interface&lt;BR /&gt;
'System.IDisposable'.&lt;/HERICSON&gt;&lt;/LASTPOINT&gt;&lt;/PRICHARDSON&gt;</description>
      <pubDate>Mon, 17 Aug 2009 21:09:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/waitcursor-at-the-command-line/m-p/2537975#M69437</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-17T21:09:11Z</dc:date>
    </item>
  </channel>
</rss>

