<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Alex &amp; Access</title><link>http://accessblog.net/</link><description>News, links, downloads, tips and tricks on Microsoft Access and related</description><language>en</language><managingEditor>noreply@blogger.com (Alex Dybenko)</managingEditor><lastBuildDate>Sat, 07 Nov 2009 00:05:28 PST</lastBuildDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">480</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/">25</openSearch:itemsPerPage><image><link>http://www.PointLtd.com/</link><url>http://www.pointltd.com/images/PointANI.gif</url><title>Point Limited: Microsoft Access Solutions</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/AlexAccessAlfa" type="application/rss+xml" /><feedburner:emailServiceId>AlexAccessAlfa</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>Installing VB6 without Java</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/mpDvMPzGIlQ/installing-vb6-without-java.html</link><category>VB</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Sat, 07 Nov 2009 00:05:28 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-7273924279146458124</guid><description>&lt;p&gt;This trick should help to install VB6 on Windows 7: &lt;a href="http://msmvps.com/blogs/bill/archive/2004/07/14/10069.aspx"&gt;Installing VB6 without Java&lt;/a&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-7273924279146458124?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=mpDvMPzGIlQ:0fMeGef-45I:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=mpDvMPzGIlQ:0fMeGef-45I:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=mpDvMPzGIlQ:0fMeGef-45I:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/mpDvMPzGIlQ" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-11-07T11:05:28.677+03:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/11/installing-vb6-without-java.html</feedburner:origLink></item><item><title>How to relink Access tables faster</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/o0dot515BnU/how-to-relink-access-tables-faster.html</link><category>Access</category><category>VBA</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Thu, 29 Oct 2009 06:09:41 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-6905556240228036287</guid><description>&lt;p&gt;When you run relink procedure at application startup, and backend file is located on the network – the process can be much slower then relinking local file, even with very fast network. The trick is to open backend file before relink process and close it after. Sample code:&lt;/p&gt; &lt;nobr&gt;   &lt;div class="code"&gt;     &lt;div&gt;&lt;span class="keyword"&gt;Dim&lt;/span&gt; dbData&amp;#160; &lt;span class="keyword"&gt;As&lt;/span&gt; DAO.Database&lt;/div&gt;      &lt;div&gt;&lt;span class="keyword"&gt;Set&lt;/span&gt; dbData = DBEngine.OpenDatabase(strFileName)&lt;/div&gt;      &lt;div&gt;&lt;span class="comment"&gt;'Relink proc follows&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;...&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;dbData.Close&lt;/div&gt;      &lt;div&gt;&lt;span class="keyword"&gt;Set&lt;/span&gt; dbData = &lt;span class="keyword"&gt;Nothing&lt;/span&gt;&lt;/div&gt;   &lt;/div&gt; &lt;/nobr&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-6905556240228036287?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=o0dot515BnU:IJFjvU1llx8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=o0dot515BnU:IJFjvU1llx8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=o0dot515BnU:IJFjvU1llx8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/o0dot515BnU" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-29T16:09:41.407+03:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">5</thr:total><feedburner:origLink>http://accessblog.net/2009/10/how-to-relink-access-tables-faster.html</feedburner:origLink></item><item><title>Access 2010 in action</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/QiHio58MTII/access-2010-in-action.html</link><category>Access 14</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Thu, 29 Oct 2009 03:43:04 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-1131798250560399494</guid><description>&lt;p&gt;Check out this great video - &lt;a href="http://www.members.shaw.ca/MrTurtle/2010d1/w1.html"&gt;Access 2010 and Outlook style calendar running in a browser&lt;/a&gt; by Albert D. Kallal, Access MVP. Application was developed in Access and running in web browser using SharePoint Access services. Well done, Albert!&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-1131798250560399494?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=QiHio58MTII:I6ZcSKiVR0M:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=QiHio58MTII:I6ZcSKiVR0M:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=QiHio58MTII:I6ZcSKiVR0M:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/QiHio58MTII" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-29T13:43:04.903+03:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://accessblog.net/2009/10/access-2010-in-action.html</feedburner:origLink></item><item><title>Access 2010 - Access Services</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/lsqByp1falo/access-2010-access-services.html</link><category>Access 14</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Wed, 21 Oct 2009 02:18:26 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-1722817850607669531</guid><description>&lt;p&gt;Now it is official - Access Services for Sharepoint 2010. &lt;a href="http://channel9.msdn.com/shows/Access/Microsoft-Access-2010-Demo/"&gt;Ryan McMinn and Clint Covington opens curtain&lt;/a&gt;.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-1722817850607669531?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=lsqByp1falo:M4HQOqWqHY8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=lsqByp1falo:M4HQOqWqHY8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=lsqByp1falo:M4HQOqWqHY8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/lsqByp1falo" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-21T13:18:26.536+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/10/access-2010-access-services.html</feedburner:origLink></item><item><title>MVP 2009</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/Z3O6oFagWTQ/mvp-2009.html</link><category>#MVP09</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Thu, 01 Oct 2009 07:31:42 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-2443899627669341350</guid><description>&lt;p&gt;&lt;span style="font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 12pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-bidi-font-family: &amp;#39;Times New Roman&amp;#39;; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;&lt;font color="#000000"&gt;Just got my MVP award: &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;span style="font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 12pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-bidi-font-family: &amp;#39;Times New Roman&amp;#39;; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;&lt;/span&gt;&lt;span style="font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 12pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-bidi-font-family: &amp;#39;Times New Roman&amp;#39;; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;&lt;font color="#000000"&gt;Congratulations! We are pleased to present you with the 2009 &lt;a href="https://mvp.support.microsoft.com"&gt;Microsoft® MVP Award&lt;/a&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;span style="font-family: &amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; font-size: 12pt; mso-fareast-font-family: &amp;#39;Times New Roman&amp;#39;; mso-bidi-font-family: &amp;#39;Times New Roman&amp;#39;; mso-ansi-language: en-us; mso-fareast-language: en-us; mso-bidi-language: ar-sa"&gt;&lt;font color="#000000"&gt;This is my 12th year on MVP, first was in 1998. &lt;a href="http://www.bing.com/search?q=%22I+feel+great%22+MVP&amp;amp;form=QBRE&amp;amp;filt=all"&gt;I feel great&lt;/a&gt;!&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-2443899627669341350?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=Z3O6oFagWTQ:2KweEvFAzuw:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=Z3O6oFagWTQ:2KweEvFAzuw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=Z3O6oFagWTQ:2KweEvFAzuw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/Z3O6oFagWTQ" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-01T18:31:42.581+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">6</thr:total><feedburner:origLink>http://accessblog.net/2009/10/mvp-2009.html</feedburner:origLink></item><item><title>Querying All Databases With sp_MsForEachDb</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/3OYg5nzWPo0/querying-all-databases-with.html</link><category>SQL Server</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Wed, 09 Sep 2009 23:30:33 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-1500606903528369579</guid><description>&lt;p&gt;If you need to query several databases on same SQL server – you can use undocumented stored procedure &lt;a href="http://www.bing.com/search?q=MsForEachDb"&gt;sp_MsForEachDb&lt;/a&gt;, see &lt;a href="http://nl.internet.com/c.html?rtr=on&amp;amp;s=1,4om0,1,7fzy,5v4z,em30,e6zg"&gt;Scott Mitchell&lt;/a&gt; article &lt;a href="http://www.4guysfromrolla.com/articles/090909-1.aspx"&gt;Querying a Multi-Tenant Data Architecture&lt;/a&gt; for more info and execution examples.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-1500606903528369579?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=3OYg5nzWPo0:D-yhX5kbA7c:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=3OYg5nzWPo0:D-yhX5kbA7c:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=3OYg5nzWPo0:D-yhX5kbA7c:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/3OYg5nzWPo0" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-10T10:30:33.358+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://accessblog.net/2009/09/querying-all-databases-with.html</feedburner:origLink></item><item><title>How to use .NET assembly in VBA</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/AdLNDLXe2bA/how-to-use-net-assembly-in-vba.html</link><category>VBA</category><category>.NET</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Fri, 04 Sep 2009 20:42:10 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-4142250988112460846</guid><description>&lt;p&gt;Example with detailed steps: &lt;a href="http://access-programmers.co.uk/forums/showthread.php?t=155129"&gt;Consuming .NET components within Access/VBA&lt;/a&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-4142250988112460846?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=AdLNDLXe2bA:oSxumUu_Bns:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=AdLNDLXe2bA:oSxumUu_Bns:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=AdLNDLXe2bA:oSxumUu_Bns:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/AdLNDLXe2bA" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-05T07:42:10.715+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://accessblog.net/2009/09/how-to-use-net-assembly-in-vba.html</feedburner:origLink></item><item><title>How to get rid of ADMIN - 00 tables in database</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/i74uoHEVPSk/how-to-get-rid-of-admin-00-tables-in.html</link><category>Access</category><category>Upsizing</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Mon, 31 Aug 2009 12:47:40 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-8859209453709180014</guid><description>&lt;p&gt;If you are running pass-through queries in your database – you can suddenly get a lot of ADMIN – 00, ADMIN – 01, etc. tables. Office Online article &lt;a href="http://office.microsoft.com/en-us/access/HP051880531033.aspx"&gt;Create tables from the results of a pass-through query (MDB)&lt;/a&gt; explains why this happens:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Some pass-through queries can return messages in addition to data. If you set the query's LogMessages property to Yes, Access creates a table that contains any returned messages. The table name is the user name concatenated with a hyphen (-) and a sequential number starting at 00. For example, the default user name is ADMIN so the tables returned would be named &amp;quot;ADMIN - 00,&amp;quot; &amp;quot;ADMIN - 01,&amp;quot; and so on.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Even you set LogMessages property to No – you can get such messages. For example - in one application I am continuously getting message like:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;01003 - 8153 - [Microsoft][ODBC SQL Server Driver][SQL Server]Warning: Null value is eliminated by an aggregate or other SET operation.&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;To get rid of it – you have to find query, which produce this message and fix it. In my case it was a query with SQL:&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier"&gt;Select ProductID, Sum(Qty) as Shipped from tblOrder&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;Qty field had some null values and is was a source of this message. So I fixed it like this:&lt;/p&gt;  &lt;p&gt;&lt;font face="Courier"&gt;Select ProductID, Sum(Qty) as Shipped from tblOrder where not Qty is null&lt;/font&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-8859209453709180014?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=i74uoHEVPSk:Nmm7IbaBDLk:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=i74uoHEVPSk:Nmm7IbaBDLk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=i74uoHEVPSk:Nmm7IbaBDLk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/i74uoHEVPSk" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-31T23:47:40.750+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total><feedburner:origLink>http://accessblog.net/2009/08/how-to-get-rid-of-admin-00-tables-in.html</feedburner:origLink></item><item><title>A new method for disabling the Mouse Scroll Wheel in Access forms</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/3S7OmK9Gppk/new-method-for-disabling-mouse-scroll.html</link><category>Access</category><category>VBA</category><category>Code Samples</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Wed, 12 Aug 2009 07:09:17 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-5916634983654920437</guid><description>&lt;p&gt;Or how to run native code from VBA! I just learned about new method to put native code into memory and run it from Wayne Phillips. Very cool! He made a &lt;a href="http://www.everythingaccess.com/tutorials.asp?ID=A-new-method-for-disabling-the-Mouse-Scroll-Wheel-in-Access-forms"&gt;sample to disable mouse wheel on Access form&lt;/a&gt; with that method. Read the tutorial to learn more.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-5916634983654920437?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=3S7OmK9Gppk:p-Vnr9TTFBA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=3S7OmK9Gppk:p-Vnr9TTFBA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=3S7OmK9Gppk:p-Vnr9TTFBA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/3S7OmK9Gppk" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-12T18:09:17.597+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/08/new-method-for-disabling-mouse-scroll.html</feedburner:origLink></item><item><title>VB5/6 Controls and Components</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/uJ9EzvGQGFg/vb56-controls-and-components.html</link><category>VB</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Thu, 03 Sep 2009 08:01:36 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-6777089994561975899</guid><description>&lt;p&gt;Now at &lt;a href="http://vb.mvps.org/tools/ControlsAndComponents.asp"&gt;MVPs.org&lt;/a&gt; site: &lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;These downloads were all provided by Microsoft for VB5 and/or VB6, and the links will point to &lt;a href="http://www.microsoft.com/downloads/"&gt;download.microsoft.com&lt;/a&gt; until Microsoft decides to remove them &lt;/p&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;p&gt;&lt;em&gt;Update: some links still on &lt;/em&gt;&lt;a href="http://msdn.microsoft.com/en-us/vbrun/ee410535.aspx"&gt;&lt;em&gt;MSDN site&lt;/em&gt;&lt;/a&gt;&lt;em&gt;, with descriptions.&lt;/em&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-6777089994561975899?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=uJ9EzvGQGFg:PQt8-4255fs:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=uJ9EzvGQGFg:PQt8-4255fs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=uJ9EzvGQGFg:PQt8-4255fs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/uJ9EzvGQGFg" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-03T19:01:36.174+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://accessblog.net/2009/07/vb56-controls-and-components.html</feedburner:origLink></item><item><title>How to get Tag information from MP3 files</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/_bKNn3umAy4/how-to-get-tag-information-from-mp3.html</link><category>VBA</category><category>Code Samples</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Thu, 23 Jul 2009 02:56:23 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-6216087789291569638</guid><description>&lt;p&gt;1. Check article &lt;a href="http://www.accessmvp.com/DJSteele/SmartAccess.html"&gt;November 2004: Sounds good to me and Stupid Date Tricks&lt;/a&gt; of Doug Steele, Access MVP&lt;/p&gt;  &lt;p&gt;2. Two sample applications, on German, but you can read VBA:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="http://www.g-st.ch/privat/freeware/mp3info.html"&gt;Mp3Info&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;&lt;a href="http://www.g-st.ch/privat/freeware/mp3db.html"&gt;Mp3DB&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;3. VB6 code from &lt;a href="http://www.vbaccelerator.com/home/VB/Code/vbMedia/Audio/Reading_and_Writing_MP3_ID3v1_and_v2_Tags/MP3_ID3_Tags_Code.asp"&gt;VBAccelerator&lt;/a&gt;.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-6216087789291569638?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=_bKNn3umAy4:54CdOS2t51Y:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=_bKNn3umAy4:54CdOS2t51Y:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=_bKNn3umAy4:54CdOS2t51Y:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/_bKNn3umAy4" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-23T13:56:23.515+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/07/how-to-get-tag-information-from-mp3.html</feedburner:origLink></item><item><title>How to replace text in Macro</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/IlQx1pot7TE/how-to-replace-text-in-macro.html</link><category>Access</category><category>Code Samples</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Wed, 22 Jul 2009 03:03:10 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-8687189006079804432</guid><description>&lt;p&gt;You can use this function MacroReplaceText() to replace object name, whatever, in macro with VBA. Run it as:&lt;/p&gt;  &lt;p&gt;MacroReplaceText &amp;quot;Macro1&amp;quot;,&amp;quot;OldForm&amp;quot;, &amp;quot;frmMyNewForm&amp;quot;&lt;/p&gt;  &lt;p&gt;You can use the same technique to make new macro, just create a text file in proper format, check ~macrotemp.txt file to find this out.&lt;style type="text/css"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;!--&lt;br /&gt;.keyword {color: #000080}&lt;br /&gt;.comment {color: #008000}&lt;br /&gt;--&gt;&lt;/style&gt;&lt;nobr&gt;&lt;span style="font-family: courier new; font-size: 9pt"&gt;&lt;/span&gt;      &lt;div&gt;&lt;span class="keyword"&gt;Public Function&lt;/span&gt; MacroReplaceText(strMacro &lt;span class="keyword"&gt;As String&lt;/span&gt;, _&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; strToFind &lt;span class="keyword"&gt;As String&lt;/span&gt;, _&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; strToReplace &lt;span class="keyword"&gt;As String&lt;/span&gt;)&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Dim&lt;/span&gt; strTempFile &lt;span class="keyword"&gt;As String&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Dim&lt;/span&gt; lngPos1 &lt;span class="keyword"&gt;As Long&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;       &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#29303b"&gt;&lt;span class="keyword"&gt;Dim&lt;/span&gt; intFile &lt;span class="keyword"&gt;As Integer&lt;/span&gt;, strLine &lt;span class="keyword"&gt;As String&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;        &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;font color="#29303b"&gt;&lt;span class="keyword"&gt;Dim&lt;/span&gt; strResult &lt;span class="keyword"&gt;As String&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&amp;#160; &lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; strTempFile = Environ(&amp;quot;Temp&amp;quot;) &amp;amp; &amp;quot;\~macrotemp.txt&amp;quot;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; intFile = FreeFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;If&lt;/span&gt; Len(Dir(strTempFile)) &amp;gt; 0 &lt;span class="keyword"&gt;Then&lt;/span&gt; _&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Kill strTempFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="comment"&gt;'Save to text&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; Application.SaveAsText acMacro, strMacro, strTempFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Open&lt;/span&gt; strTempFile &lt;span class="keyword"&gt;For Input As&lt;/span&gt; #intFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Do Until&lt;/span&gt; EOF(intFile)&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;If&lt;/span&gt; Len(strLine) &amp;gt; 0 &lt;span class="keyword"&gt;Then&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; strResult = strResult &amp;amp; vbCrLf &amp;amp; strLine&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;End If&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Line Input&lt;/span&gt; #intFile, strLine&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Loop&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; strResult = strResult &amp;amp; vbCrLf &amp;amp; strLine&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Close&lt;/span&gt; #intFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;If&lt;/span&gt; Len(Dir(strTempFile)) &amp;gt; 0 &lt;span class="keyword"&gt;Then&lt;/span&gt; _&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Kill strTempFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; strResult = Replace(strResult, strToFind, strToReplace)&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; lngPos1 = InStr(1, strResult, &amp;quot;Version&amp;quot;)&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;If&lt;/span&gt; lngPos1 &amp;gt; 0 &lt;span class="keyword"&gt;Then&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Open&lt;/span&gt; strTempFile &lt;span class="keyword"&gt;For Output As&lt;/span&gt; #intFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Print&lt;/span&gt; #intFile, Mid(strResult, lngPos1)&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;Close&lt;/span&gt; #intFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Application.LoadFromText acMacro, strMacro, strTempFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;End If&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160; &lt;span class="keyword"&gt;If&lt;/span&gt; Len(Dir(strTempFile)) &amp;gt; 0 &lt;span class="keyword"&gt;Then&lt;/span&gt; _&lt;/div&gt;      &lt;div&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Kill strTempFile&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;      &lt;div&gt;&lt;span class="keyword"&gt;End Function&lt;/span&gt;&lt;/div&gt;      &lt;div&gt;&amp;#160;&lt;/div&gt;   &lt;/nobr&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-8687189006079804432?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=IlQx1pot7TE:rwx0ZXDhWTk:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=IlQx1pot7TE:rwx0ZXDhWTk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=IlQx1pot7TE:rwx0ZXDhWTk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/IlQx1pot7TE" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-22T14:03:10.423+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/07/how-to-replace-text-in-macro.html</feedburner:origLink></item><item><title>New Office 2010 movie</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/8E4NhfaxRtU/new-office-2010-movie.html</link><category>Access 14</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Sat, 11 Jul 2009 21:50:56 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-1176826992983454049</guid><description>&lt;p&gt;&lt;a href="http://accessblog.net/2009/05/office-2010.html"&gt;Old movie&lt;/a&gt; was replaced with &lt;a href="http://www.office2010themovie.com/"&gt;new one&lt;/a&gt;:&lt;/p&gt;  &lt;p&gt;&lt;object width="360" height="221"&gt;&lt;param name="movie" value="http://www.youtube.com/v/VUawhjxLS2I&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/VUawhjxLS2I&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;  &lt;p&gt;You can also look as &lt;a href="http://www.members.shaw.ca/AlbertKallal/test/Access2010.wmv"&gt;one more movie&lt;/a&gt; from Access MVP Albert Kallal, I like this one!&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-1176826992983454049?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=8E4NhfaxRtU:jrsTRLWQ53I:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=8E4NhfaxRtU:jrsTRLWQ53I:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=8E4NhfaxRtU:jrsTRLWQ53I:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/8E4NhfaxRtU" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-12T08:50:56.979+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/07/new-office-2010-movie.html</feedburner:origLink></item><item><title>Why Fixed Bid Software Projects Are a Bad Idea</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/pI0PJPCTkQE/why-fixed-bid-software-projects-are-bad.html</link><category>Tutorials</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Mon, 22 Jun 2009 09:21:03 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-7052426723586600072</guid><description>&lt;p&gt;A very &lt;a href="http://www.jstreettech.com/newsletters/Armens-Thoughts-Spring-2009.html"&gt;good article&lt;/a&gt; by Armen Stein, Access MVP&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-7052426723586600072?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=pI0PJPCTkQE:TCYlHju00Do:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=pI0PJPCTkQE:TCYlHju00Do:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=pI0PJPCTkQE:TCYlHju00Do:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/pI0PJPCTkQE" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-22T20:21:03.383+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://accessblog.net/2009/06/why-fixed-bid-software-projects-are-bad.html</feedburner:origLink></item><item><title>exportSQL</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/rK8tkRkWBYA/exportsql.html</link><category>Upsizing</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Fri, 12 Jun 2009 22:10:55 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-62192193667258969</guid><description>&lt;p&gt;More code on conversion Access database to other database types:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;a href="http://www.rot13.org/~dpavlin/projects/sql/exportSQL3.txt"&gt;exportSQL&lt;/a&gt; is a Microsoft Access module which exports Access Database into MySQL, mSQL and PostgreSQL. It's based on work of &lt;a href="http://www.cynergi.net/exportsql/"&gt;Pedro Freire&lt;/a&gt;. [&lt;a href="http://freshmeat.net/projects/exportsql/"&gt;fm&lt;/a&gt;] [&lt;a href="http://cvs.linux.hr/cvsweb.cgi/sql/exportSQL3.txt"&gt;CVS&lt;/a&gt;]       &lt;br /&gt;There is also a GUI version, kindly donated by Marc Breneiser &amp;lt;mbreneiser(at)whgrp(dot)com&amp;gt; which is especially useful if your Access database is already converted to .mde files. Zip &lt;a href="http://www.rot13.org/~dpavlin/projects/sql/Conversion.zip"&gt;Conversion.zip&lt;/a&gt; includes .exe and source in VB.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Quoted from &lt;a href="http://www.rot13.org/~dpavlin/sql.html" target="_blank"&gt;*SQL-ish projects&lt;/a&gt; page of Dobrica Pavlinusic.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-62192193667258969?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=rK8tkRkWBYA:fSB1TnTlX6s:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=rK8tkRkWBYA:fSB1TnTlX6s:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=rK8tkRkWBYA:fSB1TnTlX6s:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/rK8tkRkWBYA" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-13T09:10:55.273+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total><feedburner:origLink>http://accessblog.net/2009/06/exportsql.html</feedburner:origLink></item><item><title>SQL Server Publishing Wizard</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/pKUFsRBGPr4/sql-server-publishing-wizard.html</link><category>SQL Server</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Mon, 08 Jun 2009 21:53:21 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-2550803195888992386</guid><description>&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=56E5B1C5-BF17-42E0-A410-371A838E570A&amp;amp;displaylang=en" target="_blank"&gt;Microsoft SQL Server Database Publishing Wizard 1.1&lt;/a&gt; – scripts your database, schema and data, into single text file, so you can recreate it on remote server where only web-based panel available.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-2550803195888992386?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=pKUFsRBGPr4:3jaypz_tldI:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=pKUFsRBGPr4:3jaypz_tldI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=pKUFsRBGPr4:3jaypz_tldI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/pKUFsRBGPr4" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-09T08:53:21.797+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/06/sql-server-publishing-wizard.html</feedburner:origLink></item><item><title>Smart Access Is Back!</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/rOCA5HIya3U/smart-access-is-back.html</link><category>Access</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Tue, 16 Jun 2009 02:59:04 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-1780815823893121196</guid><description>&lt;p&gt;Thanks to Garry Robinson, Access MVP, who made &lt;a href="http://www.vb123.com/smart/" target="_blank"&gt;Smart Access available again&lt;/a&gt;!&lt;/p&gt;&lt;p&gt;BTW, some articles are available at &lt;a href="http://msdn.microsoft.com/en-us/library/bb190857(office.11).aspx"&gt;MSDN site&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-1780815823893121196?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=rOCA5HIya3U:f_0E3lpSUEY:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=rOCA5HIya3U:f_0E3lpSUEY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=rOCA5HIya3U:f_0E3lpSUEY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/rOCA5HIya3U" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-16T13:59:04.728+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/06/smart-access-is-back.html</feedburner:origLink></item><item><title>Office 2010</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/xNQV4aJG0jI/office-2010.html</link><category>Access 14</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Thu, 14 May 2009 01:08:11 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-4739499996527694223</guid><description>&lt;p&gt;Here the &lt;a href="http://www.office2010themovie.com/" target="_blank"&gt;movie&lt;/a&gt;. No control or no Ctrl+Alt+Delete?&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-4739499996527694223?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=xNQV4aJG0jI:0dF0s7YDfb0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=xNQV4aJG0jI:0dF0s7YDfb0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=xNQV4aJG0jI:0dF0s7YDfb0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/xNQV4aJG0jI" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-05-14T12:08:11.697+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/05/office-2010.html</feedburner:origLink></item><item><title>Northwind.NET</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/JBHUBCEur_Y/northwindnet.html</link><category>.NET</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Mon, 04 May 2009 22:37:47 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-4797258918454133553</guid><description>&lt;p&gt;Northwind sample database, shipped with any Access version, shows different programming techniques, so Access developer can take look at sample code and quickly learn it. &lt;a href="http://northwind.codeplex.com/"&gt;Northwind.NET&lt;/a&gt; does the same for .NET framework – it is a set of sample applications demonstrating various modern technologies and development practices used within .NET Framework and Visual Studio 2008. If you once need to make something in .NET – just look at this project, find a type of form or report you want to build and check how you can build it using different .NET &lt;a href="http://northwind.codeplex.com/Thread/View.aspx?ThreadId=54012"&gt;development techniques&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;Plus - there is a sample of calling .NET web service from Access (or wrapping any .NET class into COM)!&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-4797258918454133553?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=JBHUBCEur_Y:W0jQZUbfX1E:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=JBHUBCEur_Y:W0jQZUbfX1E:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=JBHUBCEur_Y:W0jQZUbfX1E:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/JBHUBCEur_Y" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-05-05T09:37:47.557+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://accessblog.net/2009/05/northwindnet.html</feedburner:origLink></item><item><title>Access - a gaming platform?</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/bkVrsakkA4o/access-gaming-platform.html</link><category>Access</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Thu, 30 Apr 2009 21:57:18 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-8293907068520976388</guid><description>&lt;p&gt;Sounds strange? Not a all :)&lt;/p&gt;  &lt;p&gt;Just look at &lt;a href="http://www.happy2-island.com/e/access.shtml" target="_blank"&gt;two games build on Access&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;BTW, Excel too, look at &lt;a href="http://www.geocities.jp/nchikada/pac/" target="_blank"&gt;Pacman for Excel&lt;/a&gt;!&lt;/p&gt;  &lt;p&gt;Thanks for &lt;a href="http://members.shaw.ca/AlbertKallal/" target="_blank"&gt;Albert D. Kallal&lt;/a&gt; for these links!&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-8293907068520976388?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=bkVrsakkA4o:w7SPAfOWTHU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=bkVrsakkA4o:w7SPAfOWTHU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=bkVrsakkA4o:w7SPAfOWTHU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/bkVrsakkA4o" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-05-01T08:57:18.947+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/05/access-gaming-platform.html</feedburner:origLink></item><item><title>Registration-free COM</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/087FMkHHKck/registration-free-com.html</link><category>ActiveX</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Tue, 28 Apr 2009 21:41:04 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-690808382779743917</guid><description>&lt;p&gt;If you are building applications with ActiveX controls, then you can have problems distributing it, because of Admin privileges required to install ActiveX controls. There is a new COM activation model called Registration-free COM introduced in Windows XP, which can help you in this case. &lt;a href="http://msdn.microsoft.com/en-us/magazine/cc188708.aspx" target="_blank"&gt;Read this article to find more about Reg-Free COM&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;em&gt;Update&lt;/em&gt;. &lt;a href="http://stackoverflow.com/questions/345111/how-can-you-force-vb6-to-use-the-dlls-and-ocxs-from-the-app-directory/346077"&gt;One more link to read on this topic&lt;/a&gt;.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-690808382779743917?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=087FMkHHKck:CwOMi1Q-rck:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=087FMkHHKck:CwOMi1Q-rck:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=087FMkHHKck:CwOMi1Q-rck:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/087FMkHHKck" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-29T08:41:04.144+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/04/registration-free-com.html</feedburner:origLink></item><item><title>Access will export reports to Excel … again!</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/Zitau1tz29g/access-will-export-reports-to-excel.html</link><category>Access 2007</category><category>Office 2007</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Fri, 17 Apr 2009 04:13:29 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-3638015643726413311</guid><description>&lt;p&gt;&lt;a href="http://blogs.technet.com/office_sustained_engineering/archive/2009/04/16/service-pack-2-for-the-2007-microsoft-office-system-due-to-ship-april-28th.aspx" target="_blank"&gt;Service Pack 2 for the 2007 Microsoft Office System&lt;/a&gt; will bring back export to Excel feature for Access reports, finally! Thanks to Bob Larson, Access MVP, who pointed me to this link! Check out &lt;a href="http://blogs.technet.com/office_sustained_engineering/archive/2009/04/16/service-pack-2-for-the-2007-microsoft-office-system-due-to-ship-april-28th.aspx" target="_blank"&gt;other SP2 improvements&lt;/a&gt;.&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-3638015643726413311?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=Zitau1tz29g:N16Ndn1aJwM:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=Zitau1tz29g:N16Ndn1aJwM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=Zitau1tz29g:N16Ndn1aJwM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/Zitau1tz29g" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-17T15:13:29.994+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://accessblog.net/2009/04/access-will-export-reports-to-excel.html</feedburner:origLink></item><item><title>MS Access SQL Injection</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/GG7VeRxNnIk/ms-access-sql-injection.html</link><category>Access</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Thu, 09 Apr 2009 05:46:58 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-1467685151007589549</guid><description>&lt;p&gt;&lt;a href="http://www.xuexi123.net/chm/MS%20Access%20SQL%20Injection%20Cheat%20Sheet.htm" target="_blank"&gt;MS Access SQL Injection Cheat Sheet&lt;/a&gt;, it is not so dangerous like for SQL Server, but still – if you are using Access database for your web site – be aware of it!&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-1467685151007589549?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=GG7VeRxNnIk:D6QAenWcS4o:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=GG7VeRxNnIk:D6QAenWcS4o:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=GG7VeRxNnIk:D6QAenWcS4o:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/GG7VeRxNnIk" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-09T16:46:58.804+04:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://accessblog.net/2009/04/ms-access-sql-injection.html</feedburner:origLink></item><item><title>Access x64?</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/kOJTmj92q9U/access-x64.html</link><category>Access 14</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Sun, 22 Mar 2009 02:22:49 PDT</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-2364102602188228409</guid><description>&lt;p&gt;According to &lt;a href="http://blogs.zdnet.com/Bott/?p=742"&gt;Ed Bott research&lt;/a&gt; next Access version, Access 14, will be also on x64 platform. Don’t know if we get performance improvement, but some problems can arise with external libraries and controls. 64-bit activex controls?? Looking forward to try see x64 version….&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-2364102602188228409?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=kOJTmj92q9U:-oZonhhRxSg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=kOJTmj92q9U:-oZonhhRxSg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=kOJTmj92q9U:-oZonhhRxSg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/kOJTmj92q9U" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-22T12:22:49.815+03:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">7</thr:total><feedburner:origLink>http://accessblog.net/2009/03/access-x64.html</feedburner:origLink></item><item><title>MVP Summit 2009</title><link>http://feedproxy.google.com/~r/AlexAccessAlfa/~3/YVl5CaDILqQ/mvp-summit-2009.html</link><category>#MVP09</category><author>noreply@blogger.com (Alex Dybenko)</author><pubDate>Sat, 07 Mar 2009 10:13:34 PST</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7176045.post-6261099817611915062</guid><description>&lt;p&gt;This summit was great! We met some new MVPs, but also missed old good friends. We met product team and learned about their plans, they are working hard on a new version of Access. We missed salmon this time (still can't understand it), as well as &lt;a href="http://accessblog.net/2007/03/mvp-summit-starts-with-sushi.html"&gt;opening sushi&lt;/a&gt;, but had closing sushi with Crystal and Peter. So we made it!&lt;/p&gt;  &lt;p&gt;Here it is:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/_A05_hVVbbNo/SbK48CDUgnI/AAAAAAAAAJI/IIhaThQFlug/s1600-h/MVP%20Ness%20Envy%5B5%5D.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="158" alt="MVP Ness Envy" src="http://lh6.ggpht.com/_A05_hVVbbNo/SbK485JUbhI/AAAAAAAAAJM/Ooxozt2mX3s/MVP%20Ness%20Envy_thumb%5B3%5D.jpg?imgmax=800" width="244" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Access MVPs, aka &amp;quot;MVP Ness Envy&amp;quot;, performing &amp;quot;I love rock'n'roll&amp;quot;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7176045-6261099817611915062?l=accessblog.net'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=YVl5CaDILqQ:Wl2-mppi92I:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AlexAccessAlfa?a=YVl5CaDILqQ:Wl2-mppi92I:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AlexAccessAlfa?i=YVl5CaDILqQ:Wl2-mppi92I:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AlexAccessAlfa/~4/YVl5CaDILqQ" height="1" width="1"/&gt;</description><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-07T21:13:34.292+03:00</app:edited><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://accessblog.net/2009/03/mvp-summit-2009.html</feedburner:origLink></item></channel></rss>
