<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.ie/group/microsoft.public.access</id>
  <title type="text">microsoft.public.access Google Group</title>
  <subtitle type="text">
  Microsoft Office Access newsgroup.
  </subtitle>
  <link href="/group/microsoft.public.access/feed/atom_v1_0_msgs.xml" rel="self" title="microsoft.public.access feed"/>
  <updated>2010-03-17T21:47:55Z</updated>
  <generator uri="http://groups.google.ie" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Tom van Stiphout</name>
  <email>tom7744.no.s...@cox.net</email>
  </author>
  <updated>2010-03-17T21:47:55Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/ea214b23ce7164c6/6768fb585615bb71?show_docid=6768fb585615bb71</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/ea214b23ce7164c6/6768fb585615bb71?show_docid=6768fb585615bb71"/>
  <title type="text">Re: Transfering form data</title>
  <summary type="html" xml:space="preserve">
  On Wed, 17 Mar 2010 14:41:33 -0700 (PDT), &amp;quot;gsanderso...@yahoo.com&amp;quot; &lt;br&gt; Let&#39;s first make sure you have the correct database design. It appears &lt;br&gt; you are storing Person data in two tables. That is not necessarily &lt;br&gt; wrong but it is unusual. Why are you doing it that way? Can you list &lt;br&gt; the important fields in each table?
  </summary>
  </entry>
  <entry>
  <author>
  <name>gsanderson99@yahoo.com</name>
  <email>gsanderso...@yahoo.com</email>
  </author>
  <updated>2010-03-17T21:41:33Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/ea214b23ce7164c6/870acb7893a0931b?show_docid=870acb7893a0931b</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/ea214b23ce7164c6/870acb7893a0931b?show_docid=870acb7893a0931b"/>
  <title type="text">Transfering form data</title>
  <summary type="html" xml:space="preserve">
  I have a form used to search and display information about a person. &lt;br&gt; That data is stored in table A. A command button allows me to open &lt;br&gt; another form where additional data is entered about that one person. &lt;br&gt; That data is stored in table B, which is linked to table A through an &lt;br&gt; ID number (not autonumber). The second form collects and saves the
  </summary>
  </entry>
  <entry>
  <author>
  <name>KenSheridan via AccessMonster.com</name>
  <email>u51...@uwe</email>
  </author>
  <updated>2010-03-17T21:32:16Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/7525baaffe642c8c?show_docid=7525baaffe642c8c</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/7525baaffe642c8c?show_docid=7525baaffe642c8c"/>
  <title type="text">Re: Hourly Avg</title>
  <summary type="html" xml:space="preserve">
  Group the query on the date/time column formatted to the hour, e.g. &lt;br&gt; SELECT Format([SampleTime],”mm/dd/yyy y hh” AS [Sample Hour], &lt;br&gt; AVG([SiteName_EC]) AS [Average Quality] &lt;br&gt; FROM [YourTable] &lt;br&gt; GROUP BY Format([SampleTime],”yyyymmddh h”), &lt;br&gt; Format([SampleTime],”mm/dd/yyy y hh”); &lt;br&gt; The first group level is purely to ensure the correct order of the results.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Tom van Stiphout</name>
  <email>tom7744.no.s...@cox.net</email>
  </author>
  <updated>2010-03-17T21:26:31Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/dc1fd0d0b792976c/60263f7b2ad4a7d3?show_docid=60263f7b2ad4a7d3</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/dc1fd0d0b792976c/60263f7b2ad4a7d3?show_docid=60263f7b2ad4a7d3"/>
  <title type="text">Re: Save a record when switching tabs or clicking button</title>
  <summary type="html" xml:space="preserve">
  On Wed, 17 Mar 2010 20:50:14 GMT, &amp;quot;gmazza via AccessMonster.com&amp;quot; &lt;br&gt; It depends on your exact situation. Try the Deactivate event. &lt;br&gt; Of course if there is a button click event to open another form, you &lt;br&gt; can save there: &lt;br&gt; if me.dirty then &lt;br&gt; docmd.Save acForm, me.name &lt;br&gt; endif &lt;br&gt; -Tom. &lt;br&gt; Microsoft Access MVP
  </summary>
  </entry>
  <entry>
  <author>
  <name>Tom van Stiphout</name>
  <email>tom7744.no.s...@cox.net</email>
  </author>
  <updated>2010-03-17T21:23:00Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/0e98bb1aece25d97/5c3005f8d9dbe526?show_docid=5c3005f8d9dbe526</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/0e98bb1aece25d97/5c3005f8d9dbe526?show_docid=5c3005f8d9dbe526"/>
  <title type="text">Re: linking tables from different Access templates?</title>
  <summary type="html" xml:space="preserve">
  On Wed, 17 Mar 2010 13:31:01 -0700, Kathryn &lt;br&gt; Probably better to import some tables from the secondary database to &lt;br&gt; the primary one. &lt;br&gt; Getting the database design and the table relations setup correctly is &lt;br&gt; the most critical part of the project, and the most difficult one for &lt;br&gt; a beginner to do. Perhaps you would consider hiring professional help
  </summary>
  </entry>
  <entry>
  <author>
  <name>John Spencer</name>
  <email>spen...@chpdm.edu</email>
  </author>
  <updated>2010-03-17T21:17:42Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/dc1fd0d0b792976c/8c78d5a6ca20e672?show_docid=8c78d5a6ca20e672</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/dc1fd0d0b792976c/8c78d5a6ca20e672?show_docid=8c78d5a6ca20e672"/>
  <title type="text">Re: Save a record when switching tabs or clicking button</title>
  <summary type="html" xml:space="preserve">
  In the button&#39;s click event, add &lt;br&gt; If Me.Dirty = True then Me.Dirty = False. &lt;br&gt; On the tab control&#39;s change event insert the same line of code &lt;br&gt; John Spencer &lt;br&gt; Access MVP 2002-2005, 2007-2010 &lt;br&gt; The Hilltop Institute &lt;br&gt; University of Maryland Baltimore County
  </summary>
  </entry>
  <entry>
  <author>
  <name>Mark Andrews</name>
  <email>mandrews___nospam...@rptsoftware.com</email>
  </author>
  <updated>2010-03-17T21:15:17Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/ea07b6e78376d731/564985350f632a05?show_docid=564985350f632a05</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/ea07b6e78376d731/564985350f632a05?show_docid=564985350f632a05"/>
  <title type="text">Re: 2007 Report Toolbars</title>
  <summary type="html" xml:space="preserve">
  In 2007 you usually use the Ribbon. Here&#39;s a starting point for a ribbon to &lt;br&gt; use during report print/preview: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.members.shaw.ca/AlbertKallal/msaccess/DownLoad.htm&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; If you want a popup menu there are ways to do that as well.
  </summary>
  </entry>
  <entry>
  <author>
  <name>John Spencer</name>
  <email>spen...@chpdm.edu</email>
  </author>
  <updated>2010-03-17T21:14:29Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/677af4bc0f423d22?show_docid=677af4bc0f423d22</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/677af4bc0f423d22?show_docid=677af4bc0f423d22"/>
  <title type="text">Re: Hourly Avg</title>
  <summary type="html" xml:space="preserve">
  Use the Hour function to get the hour and group by the DateValue (strip off &lt;br&gt; the time) and the Hour. &lt;br&gt; Group By DateValue(DateField), Hour(DateField) &lt;br&gt; John Spencer &lt;br&gt; Access MVP 2002-2005, 2007-2010 &lt;br&gt; The Hilltop Institute &lt;br&gt; University of Maryland Baltimore County
  </summary>
  </entry>
  <entry>
  <author>
  <name>KenSheridan via AccessMonster.com</name>
  <email>u51...@uwe</email>
  </author>
  <updated>2010-03-17T21:07:55Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/ea99607096b11182/7fdfee338204ede8?show_docid=7fdfee338204ede8</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/ea99607096b11182/7fdfee338204ede8?show_docid=7fdfee338204ede8"/>
  <title type="text">Re: Multiple Listbox selectin and query criteria</title>
  <summary type="html" xml:space="preserve">
  The insertion of unwanted line breaks is something you have to watch out for &lt;br&gt; in newsgroups, which is why I split the constant declaration over two lines &lt;br&gt; by means of the underscore continuation character: &lt;br&gt; Const MESSAGETEXT = _ &lt;br&gt; &amp;quot;No customers selected. Open report for all customers?&amp;quot; &lt;br&gt; This should be entered in the procedure as two lines, pressing the Enter key
  </summary>
  </entry>
  <entry>
  <author>
  <name>Calif_Mike</name>
  <email>califm...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-17T20:58:01Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/29b222b5b819e4ad?show_docid=29b222b5b819e4ad</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/29b222b5b819e4ad?show_docid=29b222b5b819e4ad"/>
  <title type="text">RE: Hourly Avg</title>
  <summary type="html" xml:space="preserve">
  I need the data in a format that I can work with it in Excell.
  </summary>
  </entry>
  <entry>
  <author>
  <name>gmazza via AccessMonster.com</name>
  <email>u37...@uwe</email>
  </author>
  <updated>2010-03-17T20:50:14Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/dc1fd0d0b792976c/2bad5214e269ef4d?show_docid=2bad5214e269ef4d</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/dc1fd0d0b792976c/2bad5214e269ef4d?show_docid=2bad5214e269ef4d"/>
  <title type="text">Save a record when switching tabs or clicking button</title>
  <summary type="html" xml:space="preserve">
  Hey there, &lt;br&gt; When a user enters data on my form, and then either switches to another open &lt;br&gt; tab, OR clicks on a button on the current form that opens another form, I &lt;br&gt; want their data to be saved. &lt;br&gt; How can I go about this? &lt;br&gt; I tried the OnDirty event of the form as well as the Lost Focus event and &lt;br&gt; neither is firing so I am at a loss.
  </summary>
  </entry>
  <entry>
  <author>
  <name>emma</name>
  <email>henkenda...@home.nl</email>
  </author>
  <updated>2010-03-17T20:41:58Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/b7f9b9bb8a8d0e13/c708b87b3fc1f10e?show_docid=c708b87b3fc1f10e</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/b7f9b9bb8a8d0e13/c708b87b3fc1f10e?show_docid=c708b87b3fc1f10e"/>
  <title type="text">hans de koning</title>
  <summary type="html" xml:space="preserve">
  Beste Mischa Rooka &lt;br&gt; Zeg tegen Hans de Koning dat hij niet meer die rondotjes moet doen en &lt;br&gt; harder moet gaan trainen &lt;br&gt; en Hans de Koning moet Dirk Schoofs niet op het Middelveld zetten &lt;br&gt; met de vriedelijk groeten van Emma van den Boogaard.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Arvin Meyer [MVP]</name>
  <email>arv...@mvps.invalid</email>
  </author>
  <updated>2010-03-17T21:35:45Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/0343d46636b5d1ee?show_docid=0343d46636b5d1ee</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/0343d46636b5d1ee?show_docid=0343d46636b5d1ee"/>
  <title type="text">Re: Hourly Avg</title>
  <summary type="html" xml:space="preserve">
  I am unfamiliar with that wizard, but it seems that you could sort on the &lt;br&gt; date/time field, decending, then use the Daily query and change it by &lt;br&gt; dividing by 24.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jerry Whittle</name>
  <email>jerrywhit...@discussions.microsoft.com</email>
  </author>
  <updated>2010-03-17T20:34:01Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/433d22c7212040d8?show_docid=433d22c7212040d8</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/9f26bb994862a2b3/433d22c7212040d8?show_docid=433d22c7212040d8"/>
  <title type="text">RE: Hourly Avg</title>
  <summary type="html" xml:space="preserve">
  A report can group things down to the minute and hour level.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Arvin Meyer [MVP]</name>
  <email>arv...@mvps.invalid</email>
  </author>
  <updated>2010-03-17T21:33:00Z</updated>
  <id>http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/218ec964ececa5ae/c163591d7636bcfb?show_docid=c163591d7636bcfb</id>
  <link href="http://groups.google.ie/group/microsoft.public.access/browse_thread/thread/218ec964ececa5ae/c163591d7636bcfb?show_docid=c163591d7636bcfb"/>
  <title type="text">Re: ODBC Connection with Windows 7</title>
  <summary type="html" xml:space="preserve">
  You probably have a problem with your connection string. Delete all of your &lt;br&gt; links and relink the tables. If you are still having problems look at: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.carlprothman.net/Default.aspx?tabid=81&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; or: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.connectionstrings.com/&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
</feed>
