<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Excel Startup trouble</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: jkpieterse</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-10296</link>
		<dc:creator>jkpieterse</dc:creator>
		<pubDate>Thu, 07 Apr 2005 15:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-10296</guid>
		<description>&lt;p&gt;You&#039;re welcome!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Kobzeff</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-10295</link>
		<dc:creator>Jim Kobzeff</dc:creator>
		<pubDate>Thu, 07 Apr 2005 14:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-10295</guid>
		<description>&lt;p&gt;Thank you, Jan; great site.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you, Jan; great site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jkpieterse</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-10292</link>
		<dc:creator>jkpieterse</dc:creator>
		<pubDate>Thu, 07 Apr 2005 07:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-10292</guid>
		<description>&lt;p&gt;I suspect the windows protection prevented the application window from resizing indeed. No idea why though. A version difference maybe? I know Excel 2003 for example is more picky when it comes to what can be done when things are protected.&lt;/p&gt;
&lt;p&gt;Another thing to note is that I would advise you to move most of the code out of the Thisworkbook module, into a normal module. Some things seem not to work very well from within the Thisworkbook module.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I suspect the windows protection prevented the application window from resizing indeed. No idea why though. A version difference maybe? I know Excel 2003 for example is more picky when it comes to what can be done when things are protected.</p>
<p>Another thing to note is that I would advise you to move most of the code out of the Thisworkbook module, into a normal module. Some things seem not to work very well from within the Thisworkbook module.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Kobzeff</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-10275</link>
		<dc:creator>Jim Kobzeff</dc:creator>
		<pubDate>Thu, 07 Apr 2005 01:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-10275</guid>
		<description>&lt;p&gt;Jan,&lt;/p&gt;
&lt;p&gt;I found a solution to the problem I posted on April 4, but am wondering if you know why the solution works. In the Open procedure I was Protecting the WB Structure=True Windows=True. By rewriting it to WB Protect  Structure=True Windows=False, the program opens. Only a few customers had the problem, but do you (based on this latest information) have any idea why?&lt;/p&gt;
&lt;p&gt;Thank you.&lt;br&gt;
Jim Kobzeff&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Jan,</p>
<p>I found a solution to the problem I posted on April 4, but am wondering if you know why the solution works. In the Open procedure I was Protecting the WB Structure=True Windows=True. By rewriting it to WB Protect  Structure=True Windows=False, the program opens. Only a few customers had the problem, but do you (based on this latest information) have any idea why?</p>
<p>Thank you.<br />
Jim Kobzeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Kobzeff</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-10098</link>
		<dc:creator>James Kobzeff</dc:creator>
		<pubDate>Mon, 04 Apr 2005 17:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-10098</guid>
		<description>&lt;p&gt;Glad to, thank you.&lt;/p&gt;
&lt;p&gt;THIS WORKBOOK&lt;br&gt;
Private Sub Workbook_Open()&lt;br&gt;
Call Read_registry_Value&lt;br&gt;
Application.DisplayAlerts = False&lt;br&gt;
&#039;MAXIMIZES ACTIVE WINDOW&lt;br&gt;
Application.WindowState = xlMaximized&lt;br&gt;
UserForm1.Show&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;USERFORM&lt;br&gt;
Private Sub UserForm_Activate()&lt;br&gt;
Call OpenProgram&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;WORKBOOKOPEN&lt;br&gt;
Sub OpenProgram()&lt;br&gt;
Application.DisplayAlerts = False&lt;br&gt;
Call MakeMenuBar [creates my toolbar, then protects WB Structure=True, Windows=True]&lt;br&gt;
Call HideAllToolbars [hides Excel toolbars]&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;USERFORM&lt;br&gt;
Private Sub CommandButton1_Click()&lt;br&gt;
&#039;OKAY BUTTON&lt;br&gt;
Unload UserForm1&lt;br&gt;
End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Glad to, thank you.</p>
<p>THIS WORKBOOK<br />
Private Sub Workbook_Open()<br />
Call Read_registry_Value<br />
Application.DisplayAlerts = False<br />
&#8216;MAXIMIZES ACTIVE WINDOW<br />
Application.WindowState = xlMaximized<br />
UserForm1.Show<br />
End Sub</p>
<p>USERFORM<br />
Private Sub UserForm_Activate()<br />
Call OpenProgram<br />
End Sub</p>
<p>WORKBOOKOPEN<br />
Sub OpenProgram()<br />
Application.DisplayAlerts = False<br />
Call MakeMenuBar [creates my toolbar, then protects WB Structure=True, Windows=True]<br />
Call HideAllToolbars [hides Excel toolbars]<br />
End Sub</p>
<p>USERFORM<br />
Private Sub CommandButton1_Click()<br />
&#8216;OKAY BUTTON<br />
Unload UserForm1<br />
End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jkpieterse</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-10068</link>
		<dc:creator>jkpieterse</dc:creator>
		<pubDate>Mon, 04 Apr 2005 07:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-10068</guid>
		<description>&lt;p&gt;Where is the code located? (maybe good to show us some of it)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Where is the code located? (maybe good to show us some of it)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Kobzeff</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-10064</link>
		<dc:creator>James Kobzeff</dc:creator>
		<pubDate>Sun, 03 Apr 2005 21:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-10064</guid>
		<description>&lt;p&gt;Given the expertise in this group, I&#039;m hoping someone can identify the problem and suggest a remedy. 2 users of my Excel application (.xls, not add-in) are experiencing a problem at start up. The Window.State = xlMaximized sub in my procedures doesn&#039;t run; leaving the worksheets about the size of a wallet, and without min max capability. Is there something I can do at startup to work around this? Better yet, is anyone aware of a third-party program that might be preventing Excel from running it? Please suggest if you can. Thank you.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Given the expertise in this group, I&#8217;m hoping someone can identify the problem and suggest a remedy. 2 users of my Excel application (.xls, not add-in) are experiencing a problem at start up. The Window.State = xlMaximized sub in my procedures doesn&#8217;t run; leaving the worksheets about the size of a wallet, and without min max capability. Is there something I can do at startup to work around this? Better yet, is anyone aware of a third-party program that might be preventing Excel from running it? Please suggest if you can. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob van Gelder</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-9697</link>
		<dc:creator>Rob van Gelder</dc:creator>
		<pubDate>Sun, 27 Mar 2005 10:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-9697</guid>
		<description>&lt;p&gt;Jan Karel,&lt;/p&gt;
&lt;p&gt;Excel looks for that key on startup, whether it exists or not.&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Jan Karel,</p>
<p>Excel looks for that key on startup, whether it exists or not.</p>
<p>Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jkpieterse</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-9695</link>
		<dc:creator>jkpieterse</dc:creator>
		<pubDate>Sun, 27 Mar 2005 10:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-9695</guid>
		<description>&lt;p&gt;Rob,&lt;/p&gt;
&lt;p&gt;Interesting discovery. So Excel 2003 creates that key at its startup? If not, how on earth did you get at that reg key?&lt;/p&gt;
&lt;p&gt;Andrew and Rick: Thanks for the compliments.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Rob,</p>
<p>Interesting discovery. So Excel 2003 creates that key at its startup? If not, how on earth did you get at that reg key?</p>
<p>Andrew and Rick: Thanks for the compliments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Teale</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/03/26/excel-startup-trouble/#comment-9694</link>
		<dc:creator>Rick Teale</dc:creator>
		<pubDate>Sun, 27 Mar 2005 09:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1070#comment-9694</guid>
		<description>&lt;p&gt;Great resource.  I have not had too many start up problems, but I did have shut down problems.  Excel crashed every time I closed it for a while.  Turned out my personal.xls workbook was corrupted.  I exported all the modules and deleted the file.  Then I created a new personal.xls and imported all the modules from the old one and everything works great.  No more crashes.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great resource.  I have not had too many start up problems, but I did have shut down problems.  Excel crashed every time I closed it for a while.  Turned out my personal.xls workbook was corrupted.  I exported all the modules and deleted the file.  Then I created a new personal.xls and imported all the modules from the old one and everything works great.  No more crashes.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

