<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7815671010942843134</id><updated>2012-02-16T02:09:12.674-08:00</updated><category term='products'/><category term='templates'/><category term='Access 2007'/><category term='Help'/><category term='Access'/><category term='Layout'/><category term='ShrinkerStretcher'/><category term='Misc'/><category term='code'/><category term='Navigation Pane Relief'/><category term='Applications'/><category term='Documentation'/><category term='Barcodes'/><category term='blogs'/><category term='Automation'/><category term='Windows 7'/><title type='text'>Deep into Access</title><subtitle type='html'>Microsoft Access developer blog. Tips, code, what I'm working on, etc...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-2140450290408708661</id><published>2012-01-06T15:06:00.000-08:00</published><updated>2012-01-06T15:08:12.351-08:00</updated><title type='text'>Introduction to Access Programming</title><content type='html'>I get a lot of questions from people who are new to Access development and have never programmed before. Here's an introduction to the subject:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://office.microsoft.com/en-us/access-help/introduction-to-access-programming-HA010341717.aspx"&gt;Introduction to Access Programming&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;(Disclaimer:  Please realize that getting involved in programming can be life-changing - not necessarily for the better!)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-2140450290408708661?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/2140450290408708661/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=2140450290408708661' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/2140450290408708661'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/2140450290408708661'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2012/01/introduction-to-access-programming.html' title='Introduction to Access Programming'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-6626804211234940771</id><published>2011-12-29T10:46:00.000-08:00</published><updated>2011-12-29T10:46:15.331-08:00</updated><title type='text'>Map Network Drives with VBScript</title><content type='html'>When setting up that Access database on a local area network, you'll likely need to map network drives on each end user's PC. This means you'll be creating a psuedo-drive "Z:" or whatnot, which opens a folder on the server where your Access application back-end resides. &lt;br /&gt;&lt;br /&gt;As new computers are added to the network, you'll need to map the network drives on the new computers. This process can be eased by running a VBScript to automatically do the drive mapping. Below is an example script that I use to do this. You can modify the "Actions" to add or remove mapped network drives, in case you have multiple drives mapped, or need to do some mapping clean up.&lt;br /&gt;&lt;br /&gt;Just save this code in a file with a .vbs extension, modify it for your needs, then double-click it from Windows Explorer to run it.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;' Map network drives &lt;br /&gt;&lt;br /&gt;' Usage&lt;br /&gt;'    Set the size of the ADrive, ARemoteShare, and AAction arrays to&lt;br /&gt;'    be the number of drive mapping actions you want to take. Modify&lt;br /&gt;'    the "Actions" in the "Fill Actions Array" section below, save, &lt;br /&gt;'    then double-click on this file from Windows Explorer to run it.&lt;br /&gt;'&lt;br /&gt;' "Actions" can be "Remove" (removes/disconnects a mapped network &lt;br /&gt;' drive), or "Add" (adds a mapped network drive, replacing whatever &lt;br /&gt;' mapping exists for the same drive letter).&lt;br /&gt;'&lt;br /&gt;' For multiple "Actions", modify the array sizes below, then fill&lt;br /&gt;' the array entries as shown in the "Fill Actions Array" section below.&lt;br /&gt;'&lt;br /&gt;' This script will remove any existing drive map to the same drive letter&lt;br /&gt;' including persistent or remembered connections (Q303209)&lt;br /&gt;'&lt;br /&gt;' from: http://ss64.com/vb/syntax-drivemap.html&lt;br /&gt;' modified by Peter De Baets 12/28/2011&lt;br /&gt;&lt;br /&gt;Option Explicit&lt;br /&gt;Dim objNetwork, objDrives, objReg, i, objDrive, fileSys&lt;br /&gt;Dim strReplaceDrive, strLocalDrive, strRemoteShare, strShareConnected, strMessage&lt;br /&gt;Dim bolFoundExisting, bolFoundRemembered&lt;br /&gt;Const HKCU = &amp;amp;H80000001&lt;br /&gt;Dim J&lt;br /&gt;'******************************************&lt;br /&gt;'* Set the size of these arrays to the number&lt;br /&gt;'* of drive mapping actions you want to take.&lt;br /&gt;'*&lt;br /&gt;Dim ADrive(2)&lt;br /&gt;Dim ARemoteShare(2) &lt;br /&gt;Dim AAction(2)&lt;br /&gt;'*&lt;br /&gt;'****************************************** &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;'******************************************&lt;br /&gt;'* Fill Actions Array &lt;br /&gt;'* (make your changes here)&lt;br /&gt;'*&lt;br /&gt;' Example&lt;br /&gt;'ADrive(1) = "X:"&lt;br /&gt;'ARemoteShare(1) = "\\Servername\Share"&lt;br /&gt;'AAction(1) = "Add"&lt;br /&gt;&lt;br /&gt;' Action #1&lt;br /&gt;ADrive(1) = "X:"&lt;br /&gt;ARemoteShare(1) = "\\MyServer\MyShare"&lt;br /&gt;AAction(1) = "Remove"&lt;br /&gt;&lt;br /&gt;' Action #2&lt;br /&gt;ADrive(2) = "Z:"&lt;br /&gt;ARemoteShare(2) = "\\MyServer\MyShare"&lt;br /&gt;AAction(2) = "Add"&lt;br /&gt;'*&lt;br /&gt;'******************************************&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Set filesys = CreateObject("Scripting.FileSystemObject") &lt;br /&gt;for j = 1 to ubound(AAction)&lt;br /&gt;  ' Check parameters passed make sense&lt;br /&gt;  If Right(ADrive(j), 1) &amp;lt;&amp;gt; ":" OR Left(ARemoteShare(j), 2) &amp;lt;&amp;gt; "\\" Then&lt;br /&gt;    wscript.echo "INvalid Action #" &amp;amp; j &amp;amp; " //NoLogo"&lt;br /&gt;    WScript.Quit(1)&lt;br /&gt;  End If&lt;br /&gt;  if AAction(j) = "Add" then&lt;br /&gt;    wscript.echo " - Mapping: " + ADrive(j) + " to " + ARemoteShare(j)&lt;br /&gt;  Else&lt;br /&gt;    wscript.echo " - Disconnecting: " + ADrive(j) + " from " + ARemoteShare(j)&lt;br /&gt;  End If&lt;br /&gt;  Set objNetwork = WScript.CreateObject("WScript.Network")&lt;br /&gt;  ' Loop through the network drive connections and disconnect any that match strLocalDrive&lt;br /&gt;  bolFoundExisting = False&lt;br /&gt;  Set objDrives = objNetwork.EnumNetworkDrives&lt;br /&gt;  If objDrives.Count &amp;gt; 0 Then&lt;br /&gt;    For i = 0 To objDrives.Count-1 Step 2&lt;br /&gt;      If objDrives.Item(i) = ADrive(j) Then&lt;br /&gt;     if AAction(j) = "Remove" Then&lt;br /&gt;    set objDrive = fileSys.GetDrive(objDrives.Item(i))&lt;br /&gt;       if objDrive.ShareName = ARemoteShare(j) then&lt;br /&gt;            strShareConnected = objDrives.Item(i+1)&lt;br /&gt;            objNetwork.RemoveNetworkDrive ADrive(j), True, True&lt;br /&gt;            i=objDrives.Count-1&lt;br /&gt;            bolFoundExisting = True&lt;br /&gt;    Else&lt;br /&gt;      wscript.echo " - Drive " + ADrive(j) + " connected to " + ARemoteShare(j) + " not found. Continuing..."&lt;br /&gt;    End if&lt;br /&gt;  Else&lt;br /&gt;       'wscript.echo "  sharename=" + objDrive.ShareName&lt;br /&gt;          strShareConnected = objDrives.Item(i+1)&lt;br /&gt;          objNetwork.RemoveNetworkDrive ADrive(j), True, True&lt;br /&gt;          i=objDrives.Count-1&lt;br /&gt;          bolFoundExisting = True&lt;br /&gt;  End if&lt;br /&gt;      End If&lt;br /&gt;    Next&lt;br /&gt;  End If&lt;br /&gt;&lt;br /&gt;  ' If there's a remembered location (persistent mapping) delete the associated HKCU registry key&lt;br /&gt;  If bolFoundExisting &amp;lt;&amp;gt; True Then&lt;br /&gt;    Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")&lt;br /&gt;    objReg.GetStringValue HKCU, "Network\" &amp;amp; Left(ADrive(j), 1), "RemotePath", strShareConnected&lt;br /&gt;    If strShareConnected &amp;lt;&amp;gt; "" Then&lt;br /&gt;      objReg.DeleteKey HKCU, "Network\" &amp;amp; Left(ADrive(j), 1)&lt;br /&gt;      Set objReg = Nothing&lt;br /&gt;      bolFoundRemembered = True&lt;br /&gt;    End If&lt;br /&gt;  End If&lt;br /&gt;&lt;br /&gt;  if AAction(j) = "Add" then&lt;br /&gt;    'Now actually do the drive map (persistent)&lt;br /&gt;    Err.Clear&lt;br /&gt;    On Error Resume Next&lt;br /&gt;    objNetwork.MapNetworkDrive ADrive(j), ARemoteShare(j), True&lt;br /&gt;  End If&lt;br /&gt;Next &lt;br /&gt;&lt;br /&gt;'Error traps&lt;br /&gt;If Err &amp;lt;&amp;gt; 0 Then&lt;br /&gt;  Select Case Err.Number&lt;br /&gt;    Case -2147023694&lt;br /&gt;      'Persistent connection so try a second time&lt;br /&gt;      On Error Goto 0&lt;br /&gt;      objNetwork.RemoveNetworkDrive ADrive(j), True, True&lt;br /&gt;      objNetwork.MapNetworkDrive ADrive(j), ARemoteShare(j), True&lt;br /&gt;      WScript.Echo "Second attempt to " &amp;amp; AAction(j) &amp;amp; " map drive " &amp;amp; ADrive(j) &amp;amp; " to/from " &amp;amp; ARemoteShare(j)&lt;br /&gt;    Case Else&lt;br /&gt;      On Error GoTo 0&lt;br /&gt;      WScript.Echo " - ERROR: Failed to " &amp;amp; AAction(j) &amp;amp; " map drive " &amp;amp; ADrive(j) &amp;amp; " to/from " &amp;amp; ARemoteShare(j)&lt;br /&gt;  End Select&lt;br /&gt;  Err.Clear&lt;br /&gt;End If&lt;br /&gt;&lt;br /&gt;Set objNetwork = Nothing&lt;br /&gt;wscript.echo "Done. "&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-6626804211234940771?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/6626804211234940771/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=6626804211234940771' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/6626804211234940771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/6626804211234940771'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/12/map-network-drives-with-vbscript.html' title='Map Network Drives with VBScript'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-7106640566062779642</id><published>2011-10-01T20:41:00.000-07:00</published><updated>2011-10-01T20:41:14.800-07:00</updated><title type='text'>How to Set Trusted Locations for a Runtime Application</title><content type='html'>A user at AccessForums.net asked how to set up trusted locations when the end user doesn't have Access installed. You need to have a bit of a comfort level with regedit, then it is easy:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.accessforums.net/security/how-set-macro-security-distributed-app-17714.html#post81250"&gt;http://www.accessforums.net/security/how-set-macro-security-distributed-app-17714.html#post81250&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-7106640566062779642?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/7106640566062779642/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=7106640566062779642' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/7106640566062779642'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/7106640566062779642'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/10/how-to-set-trusted-locations-for.html' title='How to Set Trusted Locations for a Runtime Application'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-90397492694027180</id><published>2011-09-28T16:08:00.000-07:00</published><updated>2011-09-28T16:11:16.755-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='templates'/><category scheme='http://www.blogger.com/atom/ns#' term='products'/><category scheme='http://www.blogger.com/atom/ns#' term='Navigation Pane Relief'/><title type='text'>Copy &amp; Design Action in Navigation Pane Relief v2.0</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-hlmqQ-zyQkY/ToOmtHJ3_ZI/AAAAAAAAACM/yWHRRo-SYU8/s1600/NPRCopyAndDesign.JPG" imageanchor="1" style="margin-left:1em; margin-right:1em"&gt;&lt;img border="0" height="217" width="275" src="http://1.bp.blogspot.com/-hlmqQ-zyQkY/ToOmtHJ3_ZI/AAAAAAAAACM/yWHRRo-SYU8/s320/NPRCopyAndDesign.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;I use form and report templates when putting together Access applications. This new feature of Navigation Pane Relief v2.0 takes &lt;u&gt;4 steps&lt;/u&gt; out of the process of turning a template into an application object. &lt;br /&gt;&lt;br /&gt;For me, a template is simply a form or report that I copy and use as a starting point when designing a new form or report.&lt;br /&gt;&lt;br /&gt;I used to right click on the template, select copy, specify a new name, then find the copy in the Navigation Pane, then right click on it and select "Design", then make my changes to it. With the new "Copy &amp; Design" feature in Navigation Pane Relief, I double click "Copy &amp; Design", I specify a new name, and then the copy is automatically opened in design mode. A great time-saver (2 steps instead of 6) if you work from templates.&lt;br /&gt;&lt;br /&gt;More information about the new version of Navigation Pane Relief can be found at the &lt;a href="http://www.peterssoftware.com/npr.htm"&gt;Navigation Pane Relief Homepage.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-90397492694027180?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/90397492694027180/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=90397492694027180' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/90397492694027180'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/90397492694027180'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/i.html' title='Copy &amp; Design Action in Navigation Pane Relief v2.0'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-hlmqQ-zyQkY/ToOmtHJ3_ZI/AAAAAAAAACM/yWHRRo-SYU8/s72-c/NPRCopyAndDesign.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-3698953653625931346</id><published>2011-09-20T16:03:00.002-07:00</published><updated>2011-09-28T16:12:47.363-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Applications'/><category scheme='http://www.blogger.com/atom/ns#' term='Help'/><title type='text'>Help Tab</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(255, 255, 255); "&gt;In my latest application, I've included an extra tab on each form with help information. I thought this would be easier than writing an entire help add-on. We'll see how my customer likes it.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/-Uj6eojiynSU/TnkcC2jtgeI/AAAAAAAAAB8/n1hff6pRiEA/s1600/CaptureHelpTab.JPG" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 258px;" src="http://4.bp.blogspot.com/-Uj6eojiynSU/TnkcC2jtgeI/AAAAAAAAAB8/n1hff6pRiEA/s320/CaptureHelpTab.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5654581642470982114" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-3698953653625931346?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/3698953653625931346/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=3698953653625931346' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/3698953653625931346'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/3698953653625931346'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/help-tab.html' title='Help Tab'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-Uj6eojiynSU/TnkcC2jtgeI/AAAAAAAAAB8/n1hff6pRiEA/s72-c/CaptureHelpTab.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-4615947523772843593</id><published>2011-09-20T16:03:00.001-07:00</published><updated>2011-09-28T16:15:45.173-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='blogs'/><category scheme='http://www.blogger.com/atom/ns#' term='Misc'/><title type='text'>Other Microsoft Access Blogs</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(255, 255, 255); "&gt;&lt;p&gt;Here are some other Access blogs I check out every now and then:&lt;/p&gt;&lt;p&gt;&lt;a mce_href="http://blogs.office.com/b/microsoft-access/" href="http://blogs.office.com/b/microsoft-access/"&gt;http://blogs.office.com/b/microsoft-access/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a mce_href="http://msmvps.com/blogs/access/default.aspx" href="http://msmvps.com/blogs/access/default.aspx"&gt;http://msmvps.com/blogs/access/default.aspx&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://blog.nkadesign.com/"&gt;http://blog.nkadesign.com/&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://accessblog.net/"&gt;http://accessblog.net/&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://rogersaccessblog.blogspot.com/"&gt;http://rogersaccessblog.blogspot.com/&lt;/a&gt; &lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-4615947523772843593?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/4615947523772843593/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=4615947523772843593' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/4615947523772843593'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/4615947523772843593'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/other-microsoft-access-blogs.html' title='Other Microsoft Access Blogs'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-4510837408368230501</id><published>2011-09-20T16:02:00.001-07:00</published><updated>2011-09-28T16:14:09.923-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Automation'/><title type='text'>Connecting to Other Applications Using Late Binding</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium; "&gt;&lt;div style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background-color: rgb(255, 255, 255); padding-top: 8px; padding-right: 8px; padding-bottom: 8px; padding-left: 8px; "&gt;&lt;p&gt;Here are some great examples of how to use late binding to connect to other Office applications like Excel, PowerPoint, and Word. &lt;/p&gt;&lt;p&gt;&lt;a mce_href="http://www.excelguru.ca/node/10" href="http://www.excelguru.ca/node/10"&gt;http://www.excelguru.ca/node/10&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a mce_href="http://www.excelguru.ca/node/10" href="http://www.excelguru.ca/node/10"&gt;&lt;/a&gt;I especially like the way the code checks first for an existing instance of the application, and if not found, gets a new one. &lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-4510837408368230501?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/4510837408368230501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=4510837408368230501' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/4510837408368230501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/4510837408368230501'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/connecting-to-other-applications-using.html' title='Connecting to Other Applications Using Late Binding'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-1654417624335792968</id><published>2011-09-20T16:01:00.001-07:00</published><updated>2011-09-28T16:14:43.073-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Documentation'/><title type='text'>Documenting Using Dia</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium; "&gt;&lt;div style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background-color: rgb(255, 255, 255); padding-top: 8px; padding-right: 8px; padding-bottom: 8px; padding-left: 8px; "&gt;&lt;p&gt;Visio is nice if you want to create a diagram to document some process or flow in your Access application, but if you don't have Visio, there is a nice (and free) alternative called Dia. You can download it here:&lt;/p&gt;&lt;p&gt;&lt;a mce_href="http://live.gnome.org/Dia" href="http://live.gnome.org/Dia"&gt;http://live.gnome.org/Dia&lt;/a&gt; &lt;/p&gt;&lt;p&gt;I use a flowchart diagram to help me track where different queries are used and what they are used for. &lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-1654417624335792968?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/1654417624335792968/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=1654417624335792968' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/1654417624335792968'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/1654417624335792968'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/documenting-using-dia.html' title='Documenting Using Dia'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-5333906863106587209</id><published>2011-09-20T15:59:00.002-07:00</published><updated>2011-09-28T16:15:21.010-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Barcodes'/><category scheme='http://www.blogger.com/atom/ns#' term='Misc'/><title type='text'>Print Barcodes from Access</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium; "&gt;&lt;div style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background-color: rgb(255, 255, 255); padding-top: 8px; padding-right: 8px; padding-bottom: 8px; padding-left: 8px; "&gt;&lt;p&gt;You'll need a barcode font, if you don't already have it. Once you install the barcode font on your computer, you can print using that font and your text or ID number will appear as a barcode that can be scanned. Here's the site to download the barcode font:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;a mce_href="http://www.idautomation.com/fonts/free/" href="http://www.idautomation.com/fonts/free/"&gt;http://www.idautomation.com/fonts/free/&lt;/a&gt; &lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-5333906863106587209?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/5333906863106587209/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=5333906863106587209' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/5333906863106587209'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/5333906863106587209'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/print-barcodes-from-access.html' title='Print Barcodes from Access'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-8296243127545313821</id><published>2011-09-20T15:59:00.001-07:00</published><updated>2011-09-28T16:16:02.939-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ShrinkerStretcher'/><category scheme='http://www.blogger.com/atom/ns#' term='products'/><title type='text'>Longevity</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium; "&gt;&lt;div style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background-color: rgb(255, 255, 255); padding-top: 8px; padding-right: 8px; padding-bottom: 8px; padding-left: 8px; "&gt;&lt;p&gt;A customer from 10 years ago just contacted me to upgrade ShrinkerStretcher to the latest version. So I would have to assume that he was using the 10 year old version all of this time. That's longevity! &lt;/p&gt;&lt;p&gt;We're now on ShrinkerStretcher version 11.7. You can find out more at http://www.peterssoftware.com/ss.htm &lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-8296243127545313821?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/8296243127545313821/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=8296243127545313821' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/8296243127545313821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/8296243127545313821'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/longevity.html' title='Longevity'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-2113082761622828835</id><published>2011-09-20T15:57:00.002-07:00</published><updated>2011-09-28T16:16:36.383-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Access'/><category scheme='http://www.blogger.com/atom/ns#' term='Misc'/><title type='text'>Learn the Structure of an Access Database</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium; "&gt;&lt;div style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background-color: rgb(255, 255, 255); padding-top: 8px; padding-right: 8px; padding-bottom: 8px; padding-left: 8px; "&gt;&lt;div&gt;A client of mine has requested, as part of a training session, to provide an overview of Access. Well, I've never done this before - usually I provide training only for an application that I've developed. So I was pleased to find this on the web. It's basically an outline of a beginning Access course:&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;Learn the Structure of an Access Database &lt;/div&gt;&lt;div&gt;&lt;a mce_href="http://office.microsoft.com/en-us/access-help/learn-the-structure-of-an-access-database-HA010341808.aspx" href="http://office.microsoft.com/en-us/access-help/learn-the-structure-of-an-access-database-HA010341808.aspx"&gt;http://office.microsoft.com/en-us/access-help/learn-the-structure-of-an-access-database-HA010341808.aspx&lt;/a&gt; &lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;Thank you, Microsoft. &lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-2113082761622828835?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/2113082761622828835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=2113082761622828835' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/2113082761622828835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/2113082761622828835'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/learn-structure-of-access-database.html' title='Learn the Structure of an Access Database'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-8939975677883811579</id><published>2011-09-20T15:57:00.001-07:00</published><updated>2011-09-28T16:16:57.703-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows 7'/><category scheme='http://www.blogger.com/atom/ns#' term='Misc'/><title type='text'>Windows 7 and Mapped Network Drives</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium; "&gt;&lt;div style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background-color: rgb(255, 255, 255); padding-top: 8px; padding-right: 8px; padding-bottom: 8px; padding-left: 8px; "&gt;&lt;p&gt;Mapped network drives sometimes show a big red X in Windows 7. When you open them with Explorer, all seems to work OK. But if you have to connect to them first with a program like Access that may be trying to connect to a database back-end you'll get a nasty error message, and the back-end won't connect.&lt;/p&gt;&lt;p&gt;The problem may be that Windows 7 attempts to connect the network drive before the network connection is established. Sounds like it could be a bug.&lt;/p&gt;&lt;p&gt;The work around is a registry entry (hack?) that you can implement with this handy .reg script. Just create a .reg file and put this text in it:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;REGEDIT4&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]&lt;/p&gt;&lt;p&gt;"EnableLinkedConnections"=dword:00000001&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;... then open it ("Merge" it) on each Windows 7 computer that has the problem. Reboot and all should connect OK. &lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;UPDATE 9/15/2011:&lt;/p&gt;&lt;p&gt;A user reports that the above registry fix/hack did not resolve the problem. So I'm still looking for a way to get Windows 7 to reconnect network drives AFTER the network connection has been established. Can you help? Any ideas? &lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-8939975677883811579?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/8939975677883811579/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=8939975677883811579' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/8939975677883811579'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/8939975677883811579'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/windows-7-and-mapped-network-drives.html' title='Windows 7 and Mapped Network Drives'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-3094226159051341220</id><published>2011-09-20T15:56:00.001-07:00</published><updated>2011-09-28T16:17:35.807-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='code'/><category scheme='http://www.blogger.com/atom/ns#' term='Misc'/><title type='text'>DBForums Access Code</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium; "&gt;&lt;div style="font-family: Arial, Helvetica, sans-serif; font-size: 10pt; background-color: rgb(255, 255, 255); padding-top: 8px; padding-right: 8px; padding-bottom: 8px; padding-left: 8px; "&gt;&lt;p&gt;Need some free Access database code? Some samples to help you get started, or help you learn something new? Check out the DBForums Access Code bank: &lt;a mce_href="http://www.dbforums.com/microsoft-access/1605962-dbforums-code-bank.html" href="http://www.dbforums.com/microsoft-access/1605962-dbforums-code-bank.html"&gt;http://www.dbforums.com/microsoft-access/1605962-dbforums-code-bank.html&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Lots of great stuff to download and incorporate into your database. &lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-3094226159051341220?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/3094226159051341220/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=3094226159051341220' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/3094226159051341220'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/3094226159051341220'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/dbforums-access-code.html' title='DBForums Access Code'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-2907018638142058606</id><published>2011-09-20T15:53:00.000-07:00</published><updated>2011-09-20T15:56:26.903-07:00</updated><title type='text'>Moving Posts to This Blog</title><content type='html'>I'm moving some posts from my new blog "Deep into Access" to this blog which I started years ago, but never continued. I like the blogspot software better. So, this old blog will be my new new blog. I'll rename it to "Deep into Access" shortly&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-2907018638142058606?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/2907018638142058606/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=2907018638142058606' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/2907018638142058606'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/2907018638142058606'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2011/09/moving-posts-to-this-blog.html' title='Moving Posts to This Blog'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-851406852986882497</id><published>2010-09-23T10:57:00.000-07:00</published><updated>2011-09-28T16:18:00.285-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='products'/><category scheme='http://www.blogger.com/atom/ns#' term='Navigation Pane Relief'/><title type='text'>Colorific</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;Can a form be too colorful?&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;We'll find out. I'm about to release a new product with a very colorful interface. With this application the colors are substituting for icons. Here's a look at the main form:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;img src="http://1.bp.blogspot.com/_ie2cpOSjabE/TJuWARMSLsI/AAAAAAAAABg/CgJ-RdRUCcU/s320/Capturenpr.JPG" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 225px;" border="0" alt="" id="BLOGGER_PHOTO_ID_5520170699631767234" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Can you guess what it does yet?&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-851406852986882497?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/851406852986882497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=851406852986882497' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/851406852986882497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/851406852986882497'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2010/09/colorific.html' title='Colorific'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ie2cpOSjabE/TJuWARMSLsI/AAAAAAAAABg/CgJ-RdRUCcU/s72-c/Capturenpr.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-3427214360577992024</id><published>2007-11-20T20:10:00.000-08:00</published><updated>2011-09-28T16:12:14.585-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Access 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='Layout'/><title type='text'>Understanding Access 2007 Layout Grouping</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ie2cpOSjabE/R0Ozp6X_wqI/AAAAAAAAAAM/zfb9fNJ3HdI/s1600-h/LayoutGroupStacked.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_ie2cpOSjabE/R0Ozp6X_wqI/AAAAAAAAAAM/zfb9fNJ3HdI/s320/LayoutGroupStacked.jpg" alt="" id="BLOGGER_PHOTO_ID_5135145532758409890" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Here's a look in design mode at one of the new Access 2007 features - Stacked Layout.  The highlighted controls are grouped together in a table-like structure in such a way that when you change the width of one control, the other controls in the same column change width as well. Same for controls in rows. This is a nice feature for helping to keep controls organized on a form.&lt;br /&gt;&lt;br /&gt;But what  if you want  to manipulate these controls at runtime? Say change the size and/or position of these control? Like so (from a command button OnClick event procedure):&lt;br /&gt;&lt;br /&gt;Text0.Left = Text0.Left + 100&lt;br /&gt;&lt;br /&gt;You'll find that these controls are quite a different animal. First, moving one control will move ALL of the controls in the group - well, depending on which of the controls in the layout group you move, that is. In my experimentation, if you attempt to move any control in the right column, nothing happens. But moving the control in the upper left moves all the controls in the group.&lt;br /&gt;&lt;br /&gt;But what if you change a font in one of the controls, does it change for all the controls in the layout group? No.&lt;br /&gt;&lt;br /&gt;Weird. More on layout groups later.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-3427214360577992024?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/3427214360577992024/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=3427214360577992024' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/3427214360577992024'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/3427214360577992024'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2007/11/understanding-access-2007-layout.html' title='Understanding Access 2007 Layout Grouping'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ie2cpOSjabE/R0Ozp6X_wqI/AAAAAAAAAAM/zfb9fNJ3HdI/s72-c/LayoutGroupStacked.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7815671010942843134.post-3249459531643375314</id><published>2007-11-20T18:26:00.000-08:00</published><updated>2007-11-20T18:31:47.729-08:00</updated><title type='text'>First Post</title><content type='html'>Hi. This is intended to be a blog where I post up some musings, code and or examples of what I'm working on or what I've discovered about Microsoft Access. I'm an Access developer who finds himself digging deep under the hood of Access at times, and sometimes I find something interesting to share with the Access developer community. We'll see how this goes. I've tried blogging before and it just seems to be hard to keep up with. Please bear with any large gaps between posts.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;&lt;br /&gt;Peter De Baets&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7815671010942843134-3249459531643375314?l=deepintoaccess.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://deepintoaccess.blogspot.com/feeds/3249459531643375314/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7815671010942843134&amp;postID=3249459531643375314' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/3249459531643375314'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7815671010942843134/posts/default/3249459531643375314'/><link rel='alternate' type='text/html' href='http://deepintoaccess.blogspot.com/2007/11/first-post.html' title='First Post'/><author><name>Peter De Baets</name><uri>http://www.blogger.com/profile/08897798280650546313</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
