<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Microsoft Access Team Blog : Access 2003</title><link>http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx</link><description>Tags: Access 2003</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Accessing external data using the IN clause</title><link>http://blogs.msdn.com/access/archive/2009/03/27/accessing-external-data-using-the-in-clause.aspx</link><pubDate>Fri, 27 Mar 2009 13:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9510012</guid><dc:creator>robcooper</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/access/comments/9510012.aspx</comments><wfw:commentRss>http://blogs.msdn.com/access/commentrss.aspx?PostID=9510012</wfw:commentRss><description>&lt;P&gt;Someone sent us a question the other day about one of my favorite dark corners in Access and we thought it might be interesting to dive into this area a little.&lt;/P&gt;
&lt;P&gt;Microsoft Access SQL supports two uses of the IN keyword. The most commonly used case is as part of the WHERE clause of a SQL statement to provide a list of values used as criteria. Using the Customers table in the Northwind 2007 sample database as an example, this might look something like:&lt;/P&gt;&lt;PRE class=csharpcode&gt;&lt;SPAN class=kwrd&gt;SELECT&lt;/SPAN&gt; [&lt;SPAN class=kwrd&gt;First&lt;/SPAN&gt; Name], [&lt;SPAN class=kwrd&gt;Last&lt;/SPAN&gt; Name], [&lt;SPAN class=kwrd&gt;State&lt;/SPAN&gt;/Province]
&lt;SPAN class=kwrd&gt;FROM&lt;/SPAN&gt; [Customers]
&lt;SPAN class=kwrd&gt;WHERE&lt;/SPAN&gt; [&lt;SPAN class=kwrd&gt;State&lt;/SPAN&gt;/Province] &lt;SPAN class=kwrd&gt;IN&lt;/SPAN&gt; (&lt;SPAN class=str&gt;'WA'&lt;/SPAN&gt;, &lt;SPAN class=str&gt;'CA'&lt;/SPAN&gt;, &lt;SPAN class=str&gt;'NY'&lt;/SPAN&gt;)&lt;/PRE&gt;
&lt;P&gt;This query returns the names of customers that live in WA, CA, or NY. This keyword provides a nice alternative to the OR clause which would require repeating the field name.&lt;/P&gt;
&lt;P&gt;The other use of the IN keyword is as part of the SELECT statement or FROM clause, and is called the &lt;A href="http://msdn.microsoft.com/en-us/library/bb177907.aspx" mce_href="http://msdn.microsoft.com/en-us/library/bb177907.aspx"&gt;IN clause&lt;/A&gt;. The IN clause is used to access external data, and can be used in place of linked tables. For example, let's say that you had a SQL Server database that is used as part of an application, but you don't want to maintain a DSN to connect. You could use the IN clause in a query that uses a DSN-less connection to quickly read data from the external table. For example:&lt;/P&gt;&lt;PRE class=csharpcode&gt;&lt;SPAN class=kwrd&gt;SELECT&lt;/SPAN&gt; * &lt;SPAN class=kwrd&gt;FROM&lt;/SPAN&gt; ExternalTable
&lt;SPAN class=kwrd&gt;IN&lt;/SPAN&gt; &lt;SPAN class=str&gt;''&lt;/SPAN&gt; [ODBC;Driver={&lt;SPAN class=kwrd&gt;SQL&lt;/SPAN&gt; Server}; Server=ServerName; &lt;SPAN class=kwrd&gt;Database&lt;/SPAN&gt;=DatabaseName; Trusted_Connection=Yes]&lt;/PRE&gt;
&lt;P&gt;It is possible to create a linked table that uses a DSN-less connection, but creating the table requires code. Also, unlike a SQL pass-through query, this query is executed by the Access database engine which means that the resultset may also be updateable. Furthermore, there is a certain simplicity or elegance about this technique that I think is cool. Incidentally, there is another syntax for the IN clause, but I prefer this one.&lt;/P&gt;
&lt;P&gt;So far so good, but since the IN clause is part of the FROM clause of a query, it can also be used other places where the FROM clause can be used. For example, in a make table query to create a local copy of data in an external table:&lt;/P&gt;&lt;PRE class=csharpcode&gt;&lt;SPAN class=kwrd&gt;SELECT&lt;/SPAN&gt; * &lt;SPAN class=kwrd&gt;INTO&lt;/SPAN&gt; LocalTable
&lt;SPAN class=kwrd&gt;FROM&lt;/SPAN&gt; SourceTable
&lt;SPAN class=kwrd&gt;IN&lt;/SPAN&gt; &lt;SPAN class=str&gt;''&lt;/SPAN&gt; [ODBC;Driver={&lt;SPAN class=kwrd&gt;SQL&lt;/SPAN&gt; Server}; Server=ServerName; &lt;SPAN class=kwrd&gt;Database&lt;/SPAN&gt;=D&lt;SPAN class=kwrd&gt;atabaseName&lt;/SPAN&gt;; Trusted_Connection=Yes]&lt;/PRE&gt;
&lt;P&gt;Or, in an append query using the INSERT...INTO statement to move data from the local database into another database. Note that the connection string used in this example is to another Access database.&lt;/P&gt;&lt;PRE class=csharpcode&gt;INSERT &lt;SPAN class=kwrd&gt;INTO&lt;/SPAN&gt; DestinationTable (DestinationField)
&lt;SPAN class=kwrd&gt;IN&lt;/SPAN&gt; &lt;SPAN class=str&gt;''&lt;/SPAN&gt; [;&lt;SPAN class=kwrd&gt;DATABASE&lt;/SPAN&gt;= C:\Users\Rob\Documents\Northwind 2007.accdb]
&lt;SPAN class=kwrd&gt;SELECT&lt;/SPAN&gt; SourceField &lt;SPAN class=kwrd&gt;FROM&lt;/SPAN&gt; SourceTable&lt;/PRE&gt;
&lt;P&gt;You could even use an append query with multiple IN clauses to concatenate two text files:&lt;/P&gt;&lt;PRE class=csharpcode&gt;INSERT INTO [File2.txt] (Field1)&lt;BR&gt;IN '' [TEXT; FMT=Delimited; HDR=YES; DATABASE= C:\Users\Rob\Documents;TABLE=File2.txt]&lt;BR&gt;SELECT Field1&lt;BR&gt;FROM [File1.txt]&lt;BR&gt;IN '' [TEXT; FMT=Delimited; HDR=YES; DATABASE= c:\Users\Rob\Documents;TABLE=File1.txt];&lt;BR&gt;&lt;/PRE&gt;
&lt;P&gt;These are just a few examples of how you could use the IN clause to quickly work with external data. By using different connection strings for the external data sources, you could do some pretty cool stuff.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9510012" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/access/archive/tags/Access+2007/default.aspx">Access 2007</category><category domain="http://blogs.msdn.com/access/archive/tags/Engine/default.aspx">Engine</category><category domain="http://blogs.msdn.com/access/archive/tags/Code/default.aspx">Code</category><category domain="http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx">Access 2003</category><category domain="http://blogs.msdn.com/access/archive/tags/Power+Tips/default.aspx">Power Tips</category></item><item><title>Dot or Bang?</title><link>http://blogs.msdn.com/access/archive/2008/05/30/dot-or-bang.aspx</link><pubDate>Sat, 31 May 2008 03:39:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8565022</guid><dc:creator>robcooper</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/access/comments/8565022.aspx</comments><wfw:commentRss>http://blogs.msdn.com/access/commentrss.aspx?PostID=8565022</wfw:commentRss><description>&lt;p&gt;Here's a question that comes up from time to time. The other day, someone internally asked about the difference between using a dot &amp;quot;.&amp;quot; vs. a bang &amp;quot;!&amp;quot; for control references in a form in VBA. In other words, given a form - Form1, with a control - Control1, what are the differences between:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font face="Courier New" size="2"&gt;Form1.Control1&amp;#160;&amp;#160;&amp;#160; &lt;font color="#008000"&gt;' Control reference using a dot&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font face="Courier New" size="2"&gt;- and -&lt;/font&gt;&lt;/p&gt;    &lt;p&gt;&lt;font face="Courier New" size="2"&gt;Form1!Control1&amp;#160;&amp;#160;&amp;#160; &lt;font color="#008000"&gt;' Control reference using a bang&lt;/font&gt;&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/michkap/"&gt;Michael Kaplan&lt;/a&gt; was kind enough to respond with the following:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;The dot gives you early binding and is resolved at compile time, the bang is resolved at runtime. &lt;/li&gt;    &lt;li&gt;In the case of Forms, both controls and fields in the underlying query can be referenced via a dot since they are all in the type library for the form. &lt;/li&gt;    &lt;li&gt;Also in the case of Forms, if you change the underlying query at runtime - dot references to the old query's fields will fail at runtime since update of the Form's type library cannot happen at runtime. &lt;/li&gt;    &lt;li&gt;Because the dot is early bound, IntelliSense happens by default with the dot, not with the bang. &lt;/li&gt;    &lt;li&gt;The dot (since it is early bound) is faster than the bang, but no one runs enough code that uses these items enough for the performance difference to actually matter. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Thanks Michael for responding!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8565022" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/access/archive/tags/Access+2007/default.aspx">Access 2007</category><category domain="http://blogs.msdn.com/access/archive/tags/Report/default.aspx">Report</category><category domain="http://blogs.msdn.com/access/archive/tags/Form/default.aspx">Form</category><category domain="http://blogs.msdn.com/access/archive/tags/Code/default.aspx">Code</category><category domain="http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx">Access 2003</category><category domain="http://blogs.msdn.com/access/archive/tags/Power+Tips/default.aspx">Power Tips</category></item><item><title>Encryption vs. Encoding</title><link>http://blogs.msdn.com/access/archive/2008/05/19/encryption-vs-encoding.aspx</link><pubDate>Mon, 19 May 2008 23:01:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8519596</guid><dc:creator>robcooper</dc:creator><slash:comments>10</slash:comments><comments>http://blogs.msdn.com/access/comments/8519596.aspx</comments><wfw:commentRss>http://blogs.msdn.com/access/commentrss.aspx?PostID=8519596</wfw:commentRss><description>&lt;p&gt;Every now and again we get the question of &amp;quot;what is the difference between encryption and encoding?&amp;quot; This came up again today so we wanted to try to answer it more broadly.&lt;/p&gt;  &lt;p&gt;In short, the feature that we call &amp;quot;&lt;a href="http://office.microsoft.com/en-us/access/HA100962991033.aspx?pid=CH100621891033"&gt;encryption&lt;/a&gt;&amp;quot; is a feature that was introduced for ACCDB files in Access 2007. This feature was an improvement over the feature known as &amp;quot;encoding&amp;quot; in Access 2003. &amp;quot;Encoding&amp;quot; uses a proprietary algorithm for scrambling the data in a database and was first introduced in Access 2.0. &amp;quot;Encryption&amp;quot;, used in Access 2007, uses improved Windows APIs and is stronger than previous versions.&lt;/p&gt;  &lt;p&gt;In addition to the algorithm being used, here's a summary of the functional differences:&lt;/p&gt;  &lt;table style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" cellspacing="0" cellpadding="4" width="651" border="0"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="277"&gt;&amp;#160;&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="187"&gt;&lt;strong&gt;Encryption&lt;/strong&gt;&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="185"&gt;&lt;strong&gt;Encoding&lt;/strong&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="277"&gt;&lt;strong&gt;File format&lt;/strong&gt;&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="187"&gt;ACCDB, ACCDE, ACCDA&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="185"&gt;MDB, MDE, MDA&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="277"&gt;&lt;strong&gt;Requires database password?&lt;/strong&gt;&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="187"&gt;Yes&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="185"&gt;No&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="277"&gt;&lt;strong&gt;Creates a new file?&lt;/strong&gt;&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="187"&gt;No&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="185"&gt;Yes&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="277"&gt;&lt;strong&gt;Ribbon entry point&lt;/strong&gt;&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="187"&gt;&amp;quot;Encrypt with Password&amp;quot;&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="185"&gt;&amp;quot;Encode/Decode Database&amp;quot;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="277"&gt;&lt;strong&gt;Requires the database to be opened exclusively?&lt;/strong&gt;&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="187"&gt;Yes (because a database password is required)&lt;/td&gt;        &lt;td style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; border-bottom: gray 1px solid" valign="top" width="185"&gt;No&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;You'll notice that a database password is required when using &amp;quot;encryption&amp;quot; in a database in the ACCDB file format and not in the MDB file format. As a result, the behavior of these buttons is different in the Ribbon. When you click &amp;quot;Set Database Password&amp;quot; in the Ribbon in an MDB file, a database password is opened, but the file is not encoded. We've changed the text of the command in an ACCDB file to read &amp;quot;Encrypt with Password&amp;quot; to demonstrate that these are in fact a single operation.&lt;/p&gt;  &lt;p&gt;The feature called &amp;quot;encoding&amp;quot; in Access 2003 and Access 2007 was previously called &amp;quot;encryption&amp;quot; in Access 2002 and earlier. We realize this is somewhat confusing, however, the term &amp;quot;encoding&amp;quot; more accurately describes the algorithm used for the feature so we changed it in Access 2003. Databases encoded using Access 2003 or earlier should &lt;strong&gt;not&lt;/strong&gt; be considered secure.&lt;/p&gt;  &lt;p&gt;If you're working with both the MDB and ACCDB file formats in Access 2007, there are a few things to keep in mind:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;An encoded MDB database cannot be converted to the ACCDB file format &lt;/li&gt;    &lt;li&gt;An encrypted ACCDB cannot be converted to the MDB file format &lt;/li&gt;    &lt;li&gt;Because encrypted databases cannot be converted to MDB files, you'll need to remove the database password to save an encrypted ACCDB as an MDB &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Lastly, we'd love to hear more from you about this. How many of you are using encryption in ACCDB files vs. encoding in MDB files? Thanks!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8519596" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/access/archive/tags/Access+2007/default.aspx">Access 2007</category><category domain="http://blogs.msdn.com/access/archive/tags/Security/default.aspx">Security</category><category domain="http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx">Access 2003</category></item><item><title>Access Source Code Control and Team Foundation Server</title><link>http://blogs.msdn.com/access/archive/2008/05/14/access-source-code-control-and-team-foundation-server.aspx</link><pubDate>Thu, 15 May 2008 03:35:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8505655</guid><dc:creator>robcooper</dc:creator><slash:comments>7</slash:comments><comments>http://blogs.msdn.com/access/comments/8505655.aspx</comments><wfw:commentRss>http://blogs.msdn.com/access/commentrss.aspx?PostID=8505655</wfw:commentRss><description>&lt;p&gt;&lt;em&gt;Today's guest writer is Mike Sullivan - a tester on the Access team&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;With the release of &lt;a href="http://msdn.microsoft.com/en-us/teamsystem/default.aspx"&gt;Visual Studio Team System 2008&lt;/a&gt;, we've recently received questions from several customers regarding whether or not Team Foundation Server (TFS) can act as a source code control provider for the Access source code control (SCC) component.&amp;#160; The answer is yes!&lt;/p&gt;  &lt;p&gt;Although many folks refer to Access&amp;#8217; source code control component as &amp;#8220;SourceSafe integration,&amp;#8221; that only tells part of the story.&amp;#160; SCC integration within Access is fully compatible with any provider that implements the Microsoft Source Code Control Interface (MSSCCI).&amp;#160; Although Visual SourceSafe is one of the more widely used MSSCCI providers, there are several other products that implement this interface, including Team Foundation Server 2005 &amp;amp; 2008 as well as IBM ClearCase.&lt;/p&gt;  &lt;p&gt;However, MSSCCI support in Team Foundation Server is not native and requires an additional add-in available for download:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=87E1FFBD-A484-4C3A-8776-D560AB1E6198&amp;amp;displaylang=en"&gt;MSSCCI Add-in for Team Foundation Server 2005&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=faeb7636-644e-451a-90d4-7947217da0e7&amp;amp;displaylang=en"&gt;MSSCCI Add-in for Team Foundation Server 2008&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Of course, to enable SCC functionality from within Access, you&amp;#8217;ll also need the Source Code Control add-in.&amp;#160; This shipped as a free download as a part of the Access Developer Extensions for Access 2007 and as a separate free add-in for Access 2003:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=D96A8358-ECE4-4BEE-A844-F81856DCEB67&amp;amp;displaylang=en"&gt;Access 2007 Developer Extensions&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=2ea45ff4-a916-48c5-8f84-44b91fa774bc&amp;amp;displaylang=en"&gt;Access 2003 Source Code Control Add-in&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;If you&amp;#8217;re interested in taking this configuration for a whirl, you might want to download the &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c7a809d8-8c9f-439f-8147-948bc6957812&amp;amp;displaylang=en"&gt;Team Foundation Server Virtual PC image&lt;/a&gt; that has been made available by the Visual Studio team.&amp;#160; Included on this virtual PC are copies of Visual Studio Team System 2008 and Office 2007 Enterprise SP1 (though Access is not installed by default on this image &amp;#8211; you&amp;#8217;ll need to go to Add/Remove programs within Control panel and launch setup to install Access).&amp;#160; This trial image is good through December 31, 2008.&amp;#160; &lt;/p&gt;  &lt;p&gt;To get the Virtual PC image working, you&amp;#8217;ll also need to install the Access Developer Extensions (the MSSCCI add-in is preinstalled).&amp;#160; Since VSS is the default MSSCCI provider on the machine, you&amp;#8217;ll need to tweak a registry key to get Access to use Team Foundation instead: &lt;/p&gt;  &lt;p&gt;Path: HKEY_LOCAL_MACHINE\SOFTWARE\SOURCECODECONTROLPROVIDER   &lt;br /&gt;Key: ProviderRegKey    &lt;br /&gt;Value: SOFTWARE\Microsoft\Team Foundation Server MSSCCI Provider&lt;/p&gt;  &lt;p&gt;Hopefully those of you curious about support for TFS have had your questions answered!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8505655" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/access/archive/tags/Access+2007/default.aspx">Access 2007</category><category domain="http://blogs.msdn.com/access/archive/tags/Developer+Extensions/default.aspx">Developer Extensions</category><category domain="http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx">Access 2003</category></item><item><title>Microsoft Access Downloads in Silverlight</title><link>http://blogs.msdn.com/access/archive/2008/01/21/microsoft-access-downloads-in-silverlight.aspx</link><pubDate>Mon, 21 Jan 2008 20:45:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7186253</guid><dc:creator>Zac Woodall</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/access/comments/7186253.aspx</comments><wfw:commentRss>http://blogs.msdn.com/access/commentrss.aspx?PostID=7186253</wfw:commentRss><description>&lt;p&gt;I ran across this new &lt;a href="http://www.microsoft.com/silverlight/"&gt;Silverlight&lt;/a&gt; version of the Microsoft download center this morning.&amp;#160; If you haven't seen Silverlight yet, it is pretty cool stuff. It is Microsoft's engine for doing rich graphics composition in the web.&amp;#160; &lt;a href="http://www.microsoft.com/beta/downloads/Listing.aspx?productID=327F343D-F0D6-4E07-AA53-9656EDB98ADA&amp;amp;productTitle=Microsoft%20Office%20Access"&gt;Here&lt;/a&gt; are all the downloads Microsoft has in the download center which are Access related.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7186253" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/access/archive/tags/Access+2007/default.aspx">Access 2007</category><category domain="http://blogs.msdn.com/access/archive/tags/Download/default.aspx">Download</category><category domain="http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx">Access 2003</category></item><item><title>UI Builder for Access v.3.0 Released</title><link>http://blogs.msdn.com/access/archive/2008/01/11/ui-builder-for-access-v-3-0-released.aspx</link><pubDate>Fri, 11 Jan 2008 23:27:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7078978</guid><dc:creator>Zac Woodall</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/access/comments/7078978.aspx</comments><wfw:commentRss>http://blogs.msdn.com/access/commentrss.aspx?PostID=7078978</wfw:commentRss><description>&lt;p&gt;Brandon Smith-Daigle has recently released the 3.0 update for his &lt;a href="http://www.opengatesw.net/"&gt;UI Builder&lt;/a&gt; tool that helps Access developers to build customized user experiences in Forms without coding the VBA themselves.&amp;#160; This tool is compatible with older versions of Access as well as 2007.&amp;#160; He's running a limited time 25% discount until the end of Jan.&amp;#160; Thanks Brandon for the pointer!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7078978" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/access/archive/tags/Access+2007/default.aspx">Access 2007</category><category domain="http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx">Access 2003</category><category domain="http://blogs.msdn.com/access/archive/tags/Tools/default.aspx">Tools</category></item><item><title>Goldsoft tools for Access Developers</title><link>http://blogs.msdn.com/access/archive/2008/01/11/goldsoft-tools-for-access-developers.aspx</link><pubDate>Fri, 11 Jan 2008 20:27:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7076945</guid><dc:creator>Zac Woodall</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/access/comments/7076945.aspx</comments><wfw:commentRss>http://blogs.msdn.com/access/commentrss.aspx?PostID=7076945</wfw:commentRss><description>&lt;p&gt;Ken Hockley has recently released his Goldsoft suite.&amp;#160; These tools aim to increase Access developer productivity by helping to reduce the amount of time spent building necessary application plumbing so that developers can focus their effort on producing business logic.&amp;#160; More info is available at Ken's &lt;a href="http://www.hockley.com.au/database_builder.htm"&gt;Goldsoft website&lt;/a&gt;.&amp;#160; Thanks Ken for the pointer!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7076945" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/access/archive/tags/Access+2007/default.aspx">Access 2007</category><category domain="http://blogs.msdn.com/access/archive/tags/Download/default.aspx">Download</category><category domain="http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx">Access 2003</category><category domain="http://blogs.msdn.com/access/archive/tags/Tools/default.aspx">Tools</category></item><item><title>Access 2003 SP3 hotfix rollup now available</title><link>http://blogs.msdn.com/access/archive/2007/12/28/access-2003-sp3-hotfix-rollup.aspx</link><pubDate>Fri, 28 Dec 2007 12:35:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6886938</guid><dc:creator>Clint Covington</dc:creator><slash:comments>4</slash:comments><comments>http://blogs.msdn.com/access/comments/6886938.aspx</comments><wfw:commentRss>http://blogs.msdn.com/access/commentrss.aspx?PostID=6886938</wfw:commentRss><description>&lt;P&gt;You can find details here...&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.microsoft.com/kb/945674" mce_href="http://support.microsoft.com/kb/945674"&gt;http://support.microsoft.com/kb/945674&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;[Zac] For those of you who are wondering, this is the update I've told several folks would be coming.&amp;nbsp; Everyone who is running Access 2003 SP3 will probably want to apply this patch.&amp;nbsp; It includes fixes for the known problems SP2 users had when upgrading to SP3.&amp;nbsp; We intend to eventually roll this out through Windows Update, but for now, the only way to get these fixes is to download and apply this patch on top of 2003 SP3.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=6886938" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/access/archive/tags/Download/default.aspx">Download</category><category domain="http://blogs.msdn.com/access/archive/tags/Access+2003/default.aspx">Access 2003</category></item></channel></rss>