<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'Hopefully Simple runtime error 424 ...' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'Hopefully Simple runtime error 424 ...' posted on the 'VBA' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 18 May 2013 02:01:08 -0700</pubDate>
    <lastBuildDate>Sat, 18 May 2013 02:01:08 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/333299/hopefully-simple-runtime-error-424-/</link>
      <description>Hi all,&lt;br /&gt;
&lt;br /&gt;
Please can you help as I am completely lost.&lt;br /&gt;
&lt;br /&gt;
I have a Excel file.  in it I have a sheet with nothing on it but a rectangle that is a link to a Macro.&lt;br /&gt;
&lt;br /&gt;
The macro is simple (or so I thought).  Click the rectangle and it will open up a user form.   &lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
Option Explicit

Sub Rectangle3_Click()
frmMatchInsert.Show
End Sub

&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
But guess what! ... yep runtime error 424; object required.&lt;br /&gt;
&lt;br /&gt;
The form name is frmMatchInsert so I can't see a problem.  ALSO to add insult to injury I have got code for another file that is almost exactly the same (form name is the only change) and that runs ok.&lt;br /&gt;
&lt;br /&gt;
Where have I gone wrong ?&lt;br /&gt;
&lt;br /&gt;
Thanks for helping.&lt;br /&gt;
&lt;br /&gt;
Lensmeister.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/333299/hopefully-simple-runtime-error-424-/</guid>
      <pubDate>Mon, 27 Mar 2006 13:38:29 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/333304/re-hopefully-simple-runtime-error-424-/#333304</link>
      <description>: Hi all,&lt;br /&gt;
: &lt;br /&gt;
: Please can you help as I am completely lost.&lt;br /&gt;
: &lt;br /&gt;
: I have a Excel file.  in it I have a sheet with nothing on it but a rectangle that is a link to a Macro.&lt;br /&gt;
: &lt;br /&gt;
: The macro is simple (or so I thought).  Click the rectangle and it will open up a user form.   &lt;br /&gt;
: &lt;br /&gt;
: &lt;pre class="sourcecode"&gt;
: Option Explicit
: 
: Sub Rectangle3_Click()
: frmMatchInsert.Show
: End Sub
: 
: &lt;/pre&gt;&lt;br /&gt;
: &lt;br /&gt;
: But guess what! ... yep runtime error 424; object required.&lt;br /&gt;
: &lt;br /&gt;
: The form name is frmMatchInsert so I can't see a problem.  ALSO to add insult to injury I have got code for another file that is almost exactly the same (form name is the only change) and that runs ok.&lt;br /&gt;
: &lt;br /&gt;
: Where have I gone wrong ?&lt;br /&gt;
: &lt;br /&gt;
: Thanks for helping.&lt;br /&gt;
: &lt;br /&gt;
: Lensmeister.&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
Hi,&lt;br /&gt;
  I've added empty form (UserForm1) and typed UserForm1.Show into module. Everything works fine. So I've damaged the name to xUserForm1.Show and I've recieved your error.&lt;br /&gt;
Check, if your form exists in the same workbook and if it has EXACTLY name frmMatchInsert (try intellisence, if it knows it)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Blue;"&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-size: medium;"&gt;P&lt;/span&gt;avlin &lt;span style="font-size: medium;"&gt;II&lt;/span&gt;&lt;/em&gt;[/size]&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Purple;"&gt;Don't take life too seriously anyway you won't escape alive from it!&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/333304/re-hopefully-simple-runtime-error-424-/#333304</guid>
      <pubDate>Mon, 27 Mar 2006 14:25:15 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/333306/re-hopefully-simple-runtime-error-424-/#333306</link>
      <description>: : Hi all,&lt;br /&gt;
: : &lt;br /&gt;
: : Please can you help as I am completely lost.&lt;br /&gt;
: : &lt;br /&gt;
: : I have a Excel file.  in it I have a sheet with nothing on it but a rectangle that is a link to a Macro.&lt;br /&gt;
: : &lt;br /&gt;
: : The macro is simple (or so I thought).  Click the rectangle and it will open up a user form.   &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;pre class="sourcecode"&gt;
: : Option Explicit
: : 
: : Sub Rectangle3_Click()
: : frmMatchInsert.Show
: : End Sub
: : 
: : &lt;/pre&gt;&lt;br /&gt;
: : &lt;br /&gt;
: : But guess what! ... yep runtime error 424; object required.&lt;br /&gt;
: : &lt;br /&gt;
: : The form name is frmMatchInsert so I can't see a problem.  ALSO to add insult to injury I have got code for another file that is almost exactly the same (form name is the only change) and that runs ok.&lt;br /&gt;
: : &lt;br /&gt;
: : Where have I gone wrong ?&lt;br /&gt;
: : &lt;br /&gt;
: : Thanks for helping.&lt;br /&gt;
: : &lt;br /&gt;
: : Lensmeister.&lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: Hi,&lt;br /&gt;
:   I've added empty form (UserForm1) and typed UserForm1.Show into module. Everything works fine. So I've damaged the name to xUserForm1.Show and I've recieved your error.&lt;br /&gt;
: Check, if your form exists in the same workbook and if it has EXACTLY name frmMatchInsert (try intellisence, if it knows it)&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;span style="color: Blue;"&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-size: medium;"&gt;P&lt;/span&gt;avlin &lt;span style="font-size: medium;"&gt;II&lt;/span&gt;&lt;/em&gt;[/size]&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
: &lt;br /&gt;
: &lt;span style="color: Purple;"&gt;Don't take life too seriously anyway you won't escape alive from it!&lt;/span&gt;&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
I have just tried it again and still the same thing.  I even copied the name (frmMatchInsert) and pasted it in to the code to make sure.&lt;br /&gt;
&lt;br /&gt;
Again Runtime Error '424' :(&lt;br /&gt;
&lt;br /&gt;
I also tried earlier changing the name completely to frmTrial2 and still gave me the error :(&lt;br /&gt;
&lt;br /&gt;
Think I am losing me marbles ;)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/333306/re-hopefully-simple-runtime-error-424-/#333306</guid>
      <pubDate>Mon, 27 Mar 2006 14:44:52 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/333477/re-hopefully-simple-runtime-error-424-/#333477</link>
      <description>: : Hi all,&lt;br /&gt;
: : &lt;br /&gt;
: : Please can you help as I am completely lost.&lt;br /&gt;
: : &lt;br /&gt;
: : I have a Excel file.  in it I have a sheet with nothing on it but a rectangle that is a link to a Macro.&lt;br /&gt;
: : &lt;br /&gt;
: : The macro is simple (or so I thought).  Click the rectangle and it will open up a user form.   &lt;br /&gt;
: : &lt;br /&gt;
: : &lt;pre class="sourcecode"&gt;
: : Option Explicit
: : 
: : Sub Rectangle3_Click()
: : frmMatchInsert.Show
: : End Sub
: : 
: : &lt;/pre&gt;&lt;br /&gt;
: : &lt;br /&gt;
: : But guess what! ... yep runtime error 424; object required.&lt;br /&gt;
: : &lt;br /&gt;
: : The form name is frmMatchInsert so I can't see a problem.  ALSO to add insult to injury I have got code for another file that is almost exactly the same (form name is the only change) and that runs ok.&lt;br /&gt;
: : &lt;br /&gt;
: : Where have I gone wrong ?&lt;br /&gt;
: : &lt;br /&gt;
: : Thanks for helping.&lt;br /&gt;
: : &lt;br /&gt;
: : Lensmeister.&lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: Hi,&lt;br /&gt;
:   I've added empty form (UserForm1) and typed UserForm1.Show into module. Everything works fine. So I've damaged the name to xUserForm1.Show and I've recieved your error.&lt;br /&gt;
: Check, if your form exists in the same workbook and if it has EXACTLY name frmMatchInsert (try intellisence, if it knows it)&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;span style="color: Blue;"&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-size: medium;"&gt;P&lt;/span&gt;avlin &lt;span style="font-size: medium;"&gt;II&lt;/span&gt;&lt;/em&gt;[/size]&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
: &lt;br /&gt;
: &lt;span style="color: Purple;"&gt;Don't take life too seriously anyway you won't escape alive from it!&lt;/span&gt;&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
Hi mate ... &lt;br /&gt;
&lt;br /&gt;
Ok no laffing now .... the form name was right BUT I had changed it so the form initialise was wrong !&lt;br /&gt;
&lt;br /&gt;
SELECT * FROM user WHERE MYBrain &amp;gt; 0 Return NULL ! &lt;br /&gt;
&lt;br /&gt;
I might have another stoopid question soon.  Thanks again for your help.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/333477/re-hopefully-simple-runtime-error-424-/#333477</guid>
      <pubDate>Wed, 29 Mar 2006 12:36:30 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/333519/re-hopefully-simple-runtime-error-424-/#333519</link>
      <description>Forget any complicated code, just set up a simple macro that shows the userform on run, then right click on the rectangle and assign the macro. When you click on the rectangle, the macro runs and the userform shows.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/333519/re-hopefully-simple-runtime-error-424-/#333519</guid>
      <pubDate>Thu, 30 Mar 2006 03:00:20 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/358677/re-hopefully-simple-runtime-error-424-/#358677</link>
      <description>HI,&lt;br /&gt;
&lt;br /&gt;
I am also facing the same prob. Same set of codes are running in one file. But as i insert exactly same codes in other file. runtime error24 object required reflects..&lt;br /&gt;
&lt;br /&gt;
Pls help me if you have go d solution.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Manish&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: Hi all,&lt;br /&gt;
: &lt;br /&gt;
: Please can you help as I am completely lost.&lt;br /&gt;
: &lt;br /&gt;
: I have a Excel file.  in it I have a sheet with nothing on it but a &lt;br /&gt;
: rectangle that is a link to a Macro.&lt;br /&gt;
: &lt;br /&gt;
: The macro is simple (or so I thought).  Click the rectangle and it &lt;br /&gt;
: will open up a user form.   &lt;br /&gt;
: &lt;br /&gt;
: &lt;pre class="sourcecode"&gt;: 
: Option Explicit
: 
: Sub Rectangle3_Click()
: frmMatchInsert.Show
: End Sub
: 
: &lt;/pre&gt;: &lt;br /&gt;
: &lt;br /&gt;
: But guess what! ... yep runtime error 424; object required.&lt;br /&gt;
: &lt;br /&gt;
: The form name is frmMatchInsert so I can't see a problem.  ALSO to &lt;br /&gt;
: add insult to injury I have got code for another file that is almost &lt;br /&gt;
: exactly the same (form name is the only change) and that runs ok.&lt;br /&gt;
: &lt;br /&gt;
: Where have I gone wrong ?&lt;br /&gt;
: &lt;br /&gt;
: Thanks for helping.&lt;br /&gt;
: &lt;br /&gt;
: Lensmeister.&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/358677/re-hopefully-simple-runtime-error-424-/#358677</guid>
      <pubDate>Thu, 10 May 2007 02:12:50 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/429814/re-hopefully-simple-runtime-error-424-/#429814</link>
      <description>Hi, &lt;br /&gt;
the error may occur when the Microsoft Access Object Library is not referenced.&lt;br /&gt;
I suggest you trying edit the registry and reinstall Microsoft Office.&lt;br /&gt;
&lt;br /&gt;
Visit for more: &lt;a href="http://www.regmender.com/how-to-fix-runtime-error-424.html"&gt;How To Fix Runtime Error 424&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
Hope this information is helpful for you.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Aron&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/429814/re-hopefully-simple-runtime-error-424-/#429814</guid>
      <pubDate>Sun, 14 Oct 2012 06:21:27 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/429815/re-hopefully-simple-runtime-error-424-/#429815</link>
      <description>Hi, &lt;br /&gt;
the error may occur when the Microsoft Access Object Library is not referenced.&lt;br /&gt;
I suggest you trying edit the registry and reinstall Microsoft Office.&lt;br /&gt;
&lt;br /&gt;
Visit for more: &lt;a href="http://www.regmender.com/how-to-fix-runtime-error-424.html"&gt;How To Fix Runtime Error 424&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
Hope this information is helpful for you.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Aron&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/429815/re-hopefully-simple-runtime-error-424-/#429815</guid>
      <pubDate>Sun, 14 Oct 2012 06:23:17 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/429816/re-hopefully-simple-runtime-error-424-/#429816</link>
      <description>Hi, &lt;br /&gt;
the error may occur when the Microsoft Access Object Library is not referenced.&lt;br /&gt;
I suggest you trying edit the registry and reinstall Microsoft Office.&lt;br /&gt;
&lt;br /&gt;
Visit for more: &lt;a href="http://www.regmender.com/how-to-fix-runtime-error-424.html"&gt;How To Fix Runtime Error 424&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
Hope this information is helpful for you.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Aron&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/429816/re-hopefully-simple-runtime-error-424-/#429816</guid>
      <pubDate>Sun, 14 Oct 2012 06:25:07 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/429817/re-hopefully-simple-runtime-error-424-/#429817</link>
      <description>Hi, Regmender helps me fix the runtime error 424, I suggest try it.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/429817/re-hopefully-simple-runtime-error-424-/#429817</guid>
      <pubDate>Sun, 14 Oct 2012 06:40:59 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/429818/re-hopefully-simple-runtime-error-424-/#429818</link>
      <description>Hi, Regmender helps me fix the runtime error 424, I suggest try it.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/429818/re-hopefully-simple-runtime-error-424-/#429818</guid>
      <pubDate>Sun, 14 Oct 2012 06:42:49 -0700</pubDate>
      <category>VBA</category>
    </item>
    <item>
      <title>Re: Hopefully Simple runtime error 424 ...</title>
      <link>http://www.programmersheaven.com/mb/vba/333299/429819/re-hopefully-simple-runtime-error-424-/#429819</link>
      <description>Hi, Regmender helps me fix the runtime error 424, I suggest try it.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vba/333299/429819/re-hopefully-simple-runtime-error-424-/#429819</guid>
      <pubDate>Sun, 14 Oct 2012 06:43:54 -0700</pubDate>
      <category>VBA</category>
    </item>
  </channel>
</rss>