<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Debra D&#039;s Blog &#187; Microsoft Office Tips</title>
	<atom:link href="http://debradalgleish.com/blog/category/microsoft-office-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://debradalgleish.com/blog</link>
	<description>Behind the Scenes with an Excel consultant and website owner</description>
	<lastBuildDate>Wed, 25 Apr 2012 20:13:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<copyright>2006-2007 </copyright>
	<managingEditor>ddalgleish@contextures.com (Debra D&#039;s Blog)</managingEditor>
	<webMaster>ddalgleish@contextures.com (Debra D&#039;s Blog)</webMaster>
	<image>
		<url>http://debradalgleish.com/blog/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Debra D&#039;s Blog</title>
		<link>http://debradalgleish.com/blog</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>Behind the Scenes with an Excel consultant</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &#38; Culture" />
	<itunes:author>Debra D&#039;s Blog</itunes:author>
	<itunes:owner>
		<itunes:name>Debra D&#039;s Blog</itunes:name>
		<itunes:email>ddalgleish@contextures.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://debradalgleish.com/blog/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>Hidden Form in Access Closes Unexpectedly</title>
		<link>http://debradalgleish.com/blog/2012/03/08/hidden-form-in-access-closes-unexpectedly/</link>
		<comments>http://debradalgleish.com/blog/2012/03/08/hidden-form-in-access-closes-unexpectedly/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 01:17:00 +0000</pubDate>
		<dc:creator>Debra Dalgleish</dc:creator>
				<category><![CDATA[Microsoft Office Tips]]></category>

		<guid isPermaLink="false">http://debradalgleish.com/blog/?p=325</guid>
		<description><![CDATA[Today I solved a nagging problem with an Access database, so I&#8217;ll share the solution here, in case it helps someone else. In an Access database that I built, there is a Login form, where the users select their name &#8230; <a href="http://debradalgleish.com/blog/2012/03/08/hidden-form-in-access-closes-unexpectedly/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I solved a nagging problem with an Access database, so I&#8217;ll share the solution here, in case it helps someone else.</p>
<p>In an Access database that I built, there is a Login form, where the users select their name from a drop down list. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="accesslogoform03" border="0" alt="accesslogoform03" src="http://debradalgleish.com/blog/wp-content/uploads/2012/03/accesslogoform03.png" width="371" height="231"></p>
<p>Then, when they click OK, the Login form is hidden, and a data entry form opens.</p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="accesslogoform01" border="0" alt="accesslogoform01" src="http://debradalgleish.com/blog/wp-content/uploads/2012/03/accesslogoform01.png" width="306" height="184"></p>
<p>The Login form stays open in the background, and other forms and queries can hook into the ID for the selected user name.</p>
<h3>Hidden Form Closes Automatically</h3>
<p>Everything works well, except when I open the data entry form in design view, to make changes. Then, without warning, the Login form closes. The user ID isn&#8217;t available to any of the other forms, and I have to go back to the Login, and select a name again.</p>
<p>This is more of an annoyance than a serious problem, but I wanted to figure out why it was happening. </p>
<p>I put breakpoints all through the code, and stepped through, to find out when the Login form closed. Was there something in the code that was making it shut down?&nbsp; Nothing turned up in the code, so I was left scratching my head.</p>
<p>The SubForm Did It</p>
<p>Finally, it dawned on me that the Login form and the Data Entry form both used the same subform – it holds the logo, at the top left. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="accesslogoform04" border="0" alt="accesslogoform04" src="http://debradalgleish.com/blog/wp-content/uploads/2012/03/accesslogoform04.png" width="113" height="114">&nbsp;</p>
<p>The Logo subform saves space in the database, because the image is only in there once. It also makes it easy to make global changes, if the logo or heading text changes.</p>
<p>When I opened the data entry form in Design View, the Logo subform was also in Design View. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="accesslogoform02" border="0" alt="accesslogoform02" src="http://debradalgleish.com/blog/wp-content/uploads/2012/03/accesslogoform02.png" width="300" height="227"></p>
<p>The hidden Login form closed because it couldn&#8217;t show the Logo in form view, while the Logo was in Design View on another form.</p>
<h3>Fixing the Problem</h3>
<p>To solve the problem, I created a copy of the Logo form, and named it Logo2. On the Login Form, I changed the subform to Logo2. Now, there is no conflict when I open the Data Entry form in Design View, so the hidden Login form stays open.</p>
<p>Maybe this will help you, if you have Access forms that mysteriously close, without being told to.</p>
<p>__________</p>
]]></content:encoded>
			<wfw:commentRss>http://debradalgleish.com/blog/2012/03/08/hidden-form-in-access-closes-unexpectedly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Organizing Email in Outlook</title>
		<link>http://debradalgleish.com/blog/2011/04/17/organizing-email-in-outlook/</link>
		<comments>http://debradalgleish.com/blog/2011/04/17/organizing-email-in-outlook/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 00:14:00 +0000</pubDate>
		<dc:creator>Debra Dalgleish</dc:creator>
				<category><![CDATA[Microsoft Office Tips]]></category>

		<guid isPermaLink="false">http://debradalgleish.com/blog/2011/04/17/organizing-email-in-outlook/</guid>
		<description><![CDATA[A couple of weeks ago, due to some computer problems, I set up a new copy of Outlook 2010 on my laptop. I’ve used Outlook for many years, starting with Outlook 98, I think. Usually I copy the old Outlook &#8230; <a href="http://debradalgleish.com/blog/2011/04/17/organizing-email-in-outlook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago, due to some computer problems, I set up a new copy of Outlook 2010 on my laptop.</p>
<p>I’ve used Outlook for many years, starting with Outlook 98, I think. Usually I copy the old Outlook files to a new machine, or upgrade over an existing version, but this time I was starting fresh.</p>
<p>In the past, I’ve had one or more folders for each client, plus dozens of other folders for website related emails, personal correspondence, newsgroup follow-up, and anything else I could think of.</p>
<h3>The Simple System</h3>
<p>This time, I’m keeping it simple. In addition to the built in folders that Outlook has, I’ve only created 3 folders for my mail:</p>
<ol>
<li>_ Followup
<li>_Business
<li>_Personal</li>
</ol>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="OutlookFolders01" border="0" alt="OutlookFolders01" src="http://debradalgleish.com/blog/wp-content/uploads/2011/04/OutlookFolders01.png" width="282" height="255"></p>
<p>The underscores keep my folders above the other Outlook folders, so they’re easy to find. So far, it’s working well. I don’t have to think about filing, or wonder which subfolder I stored an email in. To find something in the Business folder, I can sort by name, or date, or use the filter or search tools.</p>
<h3>Your Outlook System</h3>
<p>How about you? Is your Outlook folder system simple, or complex?</p>
<p>_______</p>
]]></content:encoded>
			<wfw:commentRss>http://debradalgleish.com/blog/2011/04/17/organizing-email-in-outlook/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Access Database is Read Only</title>
		<link>http://debradalgleish.com/blog/2010/08/08/access-database-is-read-only/</link>
		<comments>http://debradalgleish.com/blog/2010/08/08/access-database-is-read-only/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 02:30:00 +0000</pubDate>
		<dc:creator>Debra Dalgleish</dc:creator>
				<category><![CDATA[Computer tips]]></category>
		<category><![CDATA[Microsoft Office Tips]]></category>

		<guid isPermaLink="false">http://debradalgleish.com/blog/2010/08/08/access-database-is-read-only/</guid>
		<description><![CDATA[When I tried to open one of my main Access databases today, I got the alarming message, &#8220;The database &#8216;MyData&#8217; is read-only. You won&#8217;t be able to save changes made to data or object definitions in this database.&#8221; I closed &#8230; <a href="http://debradalgleish.com/blog/2010/08/08/access-database-is-read-only/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When I tried to open one of my main Access databases today, I got the alarming message, &#8220;The database &#8216;MyData&#8217; is read-only. You won&#8217;t be able to save changes made to data or object definitions in this database.&#8221;</p>
<p><a href="http://debradalgleish.com/blog/wp-content/uploads/2010/08/readonly01.png"><img style="display: inline; border: 0px;" title="readonly01" src="http://debradalgleish.com/blog/wp-content/uploads/2010/08/readonly01_thumb.png" border="0" alt="readonly01" width="404" height="94" /></a></p>
<p>I closed it, and tried to open it again, making sure that I hadn&#8217;t accidentally selected the Read Only option.</p>
<p>A Google search turned up some dire warnings that this could be a sign of corruption, so I created a new database, imported everything, and all seemed well.</p>
<p>So, I renamed the old version, and gave the the new version the same name as the previous one, so my shortcuts and connections would work. And the problem was back.</p>
<p>I looked for errant ldb files, that were mistakenly telling the database someone else had it open. There was nothing.</p>
<p>Then it dawned on me &#8212; connections. I had an Excel file open that queried the database, so maybe that was the problem. I closed it, re-opened the database, and it worked fine. If I tried to open the database when the Excel file was open, the database was read only.</p>
<h3>Fix the Connection</h3>
<p>Well, I don&#8217;t have the two files open simultaneously too often, but I wanted to have that option available. So, I checked the connection strings for the queries and found that they included this setting:</p>
<p><strong>Mode=Share Deny Write</strong></p>
<p>I changed the setting to</p>
<p><strong>Mode=Read</strong></p>
<p>and the files now live in harmony (so far).</p>
<h3>Where Are the Connection Strings?</h3>
<p>To find the connection strings in Excel 2007:</p>
<ol>
<li>Click the Data tab on the Ribbon, and then click Connections.</li>
<li>On the Workbook Connections dialog box, click a connection name in the list</li>
<li>Click the Properties button, to open the Connection Properties dialog box.</li>
<li>Click the Definition tab, and edit the Connection String. The strings that I edited were for Provider=Microsoft.ACE.OLEDB.12.0 &#8212; the Mode setting might not appear in other types of connections.</li>
</ol>
<h3>Why Share This?</h3>
<p>This information is probably of no interest to you, unless you landed here in a Google search for &#8220;You won&#8217;t be able to save changes made to data or object definitions in this database&#8221;. But, one day in the future, I might encounter this error again, and maybe I&#8217;ll find my own solution when I do a Google search.</p>
<p>Don&#8217;t laugh &#8212; it&#8217;s happened to me before!</p>
<p>___________</p>
]]></content:encoded>
			<wfw:commentRss>http://debradalgleish.com/blog/2010/08/08/access-database-is-read-only/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Problems Deleting an Outlook Folder</title>
		<link>http://debradalgleish.com/blog/2010/05/26/problems-deleting-an-outlook-folder/</link>
		<comments>http://debradalgleish.com/blog/2010/05/26/problems-deleting-an-outlook-folder/#comments</comments>
		<pubDate>Wed, 26 May 2010 15:06:00 +0000</pubDate>
		<dc:creator>Debra Dalgleish</dc:creator>
				<category><![CDATA[Microsoft Office Tips]]></category>

		<guid isPermaLink="false">http://debradalgleish.com/blog/2010/05/26/problems-deleting-an-outlook-folder/</guid>
		<description><![CDATA[I&#8217;ve had some strange problems with Outlook for the past couple of weeks complains about things not being closed properly usually crashes the first time I try to print a message crashed when I tried to select a couple of &#8230; <a href="http://debradalgleish.com/blog/2010/05/26/problems-deleting-an-outlook-folder/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had some strange problems with Outlook for the past couple of weeks</p>
<ul>
<li>complains about things not being closed properly</li>
<li>usually crashes the first time I try to print a message</li>
<li>crashed when I tried to select a couple of messages (it&#8217;s challenging to delete a message when you can&#8217;t click on it!)</li>
<li>very slow opening and closing</li>
</ul>
<p>Probably the Outlook file was getting pretty big, so I deleted a bunch of messages, and compacted the Personal Folder. The Outlook.pst file was reduced to about half its previous size, but some of the problems persist.</p>
<h2>How To Delete an Outlook Subfolder</h2>
<p>Today I wanted to delete a subfolder that I don&#8217;t need, and even though the folder is empty, an Outlook showed a message said the folder was full, and couldn&#8217;t be deleted. Or maybe I didn&#8217;t have the correct permissions, and should check with the Administrator. Well, I&#8217;m the Administrator, and have permission to do whatever I want! </p>
<p>Google showed me how to get rid of that folder though. </p>
<ul>
<li>Press the Ctrl key while opening Outlook, and confirm that you want to open in Safe mode.</li>
<li>Then, while you&#8217;re in Safe mode, select the folder and delete it.</li>
</ul>
<p>If you&#8217;ve run into a similar problem, I hope this works for you too.</p>
<p>__________</p>
]]></content:encoded>
			<wfw:commentRss>http://debradalgleish.com/blog/2010/05/26/problems-deleting-an-outlook-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Looking in the Outbox</title>
		<link>http://debradalgleish.com/blog/2010/02/25/stop-looking-in-the-outbox/</link>
		<comments>http://debradalgleish.com/blog/2010/02/25/stop-looking-in-the-outbox/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 20:32:00 +0000</pubDate>
		<dc:creator>Debra Dalgleish</dc:creator>
				<category><![CDATA[Excel Consulting]]></category>
		<category><![CDATA[Microsoft Office Tips]]></category>

		<guid isPermaLink="false">http://debradalgleish.com/blog/2010/02/25/stop-looking-in-the-outbox/</guid>
		<description><![CDATA[Does this ever happen to you? In Outlook, you create an email, hit Send, then wander off to do a few other things. Hours later, you get a phone call from the client who’s waiting for your message, and you &#8230; <a href="http://debradalgleish.com/blog/2010/02/25/stop-looking-in-the-outbox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Does this ever happen to you? In Outlook, you create an email, hit Send, then wander off to do a few other things. Hours later, you get a phone call from the client who’s waiting for your message, and you realize that the email is still in the Outbox. </p>
<p>The only solution to the stuck email seemed to be copying its contents to another message, deleting the original, and sending the new message. Who has time for all that, especially when a client is waiting?</p>
<h2>Stay Away From the Outbox</h2>
<p>After unsent Outlook messages happened to me a few times, I finally figured out that the problem occurred if I clicked on the Outbox folder, before the message was sent.</p>
<p>So, I try to avoid clicking on the Outbox folder, but I accidentally click on it now and then.</p>
<h2>Advice From the Experts</h2>
<p>An Outlook message got stuck in the Outbox again today, so I Googled to see if anyone else had the same problem, and had posted a solution. The Google search turned up a page on the Slipstick site, owned by Outlook expert, Diane Poremsky – <a title="Email Won’t Send – Common Causes" href="http://www.slipstick.com/problems/nosend.htm">Email Won’t Send – Common Causes</a>.</p>
<p>Her advice? Stop looking in the Outbox. <img src='http://debradalgleish.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Well, that’s the recommended quick fix. There’s also a longer article on the problem: <a title="After viewing the Outbox, the messages in it won’t send" href="http://www.slipstick.com/problems/outbox.htm">After viewing the Outbox, the messages in it won’t send</a>. </p>
<p>Apparently some add-ins mark the outbound messages as Read, if you peek in the Outbox, and that prevents them from being sent. Maybe I have one or more of the add-ins that are in that long list. </p>
<h2>Okay, I’ll Stop</h2>
<p>Anyway, it’s reassuring to know that other people have the unsent Outlook messages problem, and I can avoid it by staying out of the Outbox. </p>
<p>Next time I accidentally hit the Outbox (oh, I will), I’ll try marking the message as Unread, to see if that will fix the problem, and let me send it.</p>
<p>____________</p>
]]></content:encoded>
			<wfw:commentRss>http://debradalgleish.com/blog/2010/02/25/stop-looking-in-the-outbox/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

