<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Donneray</title>
	<atom:link href="http://donneray.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://donneray.info</link>
	<description>Information from classes and day to day stuff</description>
	<lastBuildDate>Mon, 08 Apr 2013 19:59:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>About Faxes</title>
		<link>http://donneray.info/2012/12/about-faxes/</link>
		<comments>http://donneray.info/2012/12/about-faxes/#comments</comments>
		<pubDate>Mon, 17 Dec 2012 22:05:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://donneray.info/?p=203</guid>
		<description><![CDATA[Please don&#8217;t fax me anything&#8230; This is the conversation tha tgoes through my head when people ask to fax me something&#8230;]]></description>
			<content:encoded><![CDATA[<p></p><p>Please don&#8217;t fax me anything&#8230; This is the conversation tha tgoes through my head when people ask to fax me something&#8230;</p>
<p><a href="http://donneray.info/wp-content/uploads/2012/12/search1.gif"><img class="alignnone size-full wp-image-205" title="search" src="http://donneray.info/wp-content/uploads/2012/12/search1.gif" alt="" width="640" height="199" /></a></p>
<p></p>]]></content:encoded>
			<wfw:commentRss>http://donneray.info/2012/12/about-faxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun Stuff</title>
		<link>http://donneray.info/2012/10/fun-stuff/</link>
		<comments>http://donneray.info/2012/10/fun-stuff/#comments</comments>
		<pubDate>Tue, 30 Oct 2012 18:43:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://donneray.info/?p=189</guid>
		<description><![CDATA[Fun with SI units 2000 mockingbirds = 2 kilo mockingbird Basic unit of laryngitis = hoarse power 1 million phones = 1 mega phone 1000 aches = 1 kilo hurts]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>Fun with SI units</strong></p>
<p>2000 mockingbirds = 2 kilo mockingbird</p>
<p>Basic unit of laryngitis = hoarse power</p>
<p>1 million phones = 1 mega phone</p>
<p>1000 aches = 1 kilo hurts</p>
<p></p>]]></content:encoded>
			<wfw:commentRss>http://donneray.info/2012/10/fun-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FindInfo macro</title>
		<link>http://donneray.info/2012/09/findinfo-macro/</link>
		<comments>http://donneray.info/2012/09/findinfo-macro/#comments</comments>
		<pubDate>Tue, 18 Sep 2012 01:04:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://donneray.info/?p=160</guid>
		<description><![CDATA[Is below: &#160; Sub FindInfo() ' ' FindInfo Macro ' ' Keyboard Shortcut: Ctrl+w '     Dim vendcode As String     Dim itemcode As String     Dim vendcodecurrent As String     Dim itemcodecurrent As String     Dim bolFoundItem As Boolean     Dim strVendor As String     Dim strBrand As String     Dim strStubSpec As String [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Is below:</p>
<p>&nbsp;</p>
<pre>Sub FindInfo()</pre>
<pre>'</pre>
<pre>' FindInfo Macro</pre>
<pre>'</pre>
<pre>' Keyboard Shortcut: Ctrl+w</pre>
<pre>'</pre>
<pre>    Dim vendcode As String</pre>
<pre>    Dim itemcode As String</pre>
<pre>    Dim vendcodecurrent As String</pre>
<pre>    Dim itemcodecurrent As String</pre>
<pre>    Dim bolFoundItem As Boolean</pre>
<pre>    Dim strVendor As String</pre>
<pre>    Dim strBrand As String</pre>
<pre>    Dim strStubSpec As String</pre>
<pre>    Dim numVol_Eq</pre>
<pre>    Range("E2").Select</pre>
<pre>    ' Get what we are looking for</pre>
<pre>    vendcode = ActiveCell.Value</pre>
<pre>    ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>    itemcode = ActiveCell.Value</pre>
<pre>    ActiveCell.Offset(0, -1).Range("A1").Select</pre>
<pre>    Windows("prod_saltsnck.xlsx").Activate</pre>
<pre>    Range("H2").Select</pre>
<pre>    bolFoundItem = False</pre>
<pre>    i = 1</pre>
<pre>    Do While bolFoundItem = False</pre>
<pre>        ' Get what we are on</pre>
<pre>        vendcodecurrent = ActiveCell.Value</pre>
<pre>        ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>        itemcodecurrent = ActiveCell.Value</pre>
<pre>        ActiveCell.Offset(0, -1).Range("A1").Select</pre>
<pre>        'Have we found what we are looking for?</pre>
<pre>        If vendcode = vendcodecurrent Then</pre>
<pre>            If itemcode = itemcodecurrent Then</pre>
<pre>                bolFoundItem = True</pre>
<pre>                ActiveCell.Offset(0, -4).Range("A1").Select</pre>
<pre>                strVendor = ActiveCell.Value</pre>
<pre>                ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>                strBrand = ActiveCell.Value</pre>
<pre>                ActiveCell.Offset(0, 5).Range("A1").Select</pre>
<pre>                strStubSpec = ActiveCell.Value</pre>
<pre>                ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>                numVol_Eq = ActiveCell.Value</pre>
<pre>            End If</pre>
<pre>        End If</pre>
<pre>        ' Do what is required.</pre>
<pre>        If bolFoundItem = True Then</pre>
<pre>            Windows("SaltySnack_Sales.xlsx").Activate</pre>
<pre>            ActiveCell.Offset(0, 2).Range("A1").Select</pre>
<pre>            ActiveCell.Value = strVendor</pre>
<pre>            ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>            ActiveCell.Value = strBrand</pre>
<pre>            ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>            ActiveCell.Value = strStubSpec</pre>
<pre>            ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>            ActiveCell.Value = numVol_Eq</pre>
<pre>            'Move back</pre>
<pre>            ActiveCell.Offset(0, -5).Range("A1").Select</pre>
<pre>            'Grab the next value(s)</pre>
<pre>            ActiveCell.Offset(1, 0).Range("A1").Select</pre>
<pre>            vendcode = ActiveCell.Value</pre>
<pre>            ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>            itemcode = ActiveCell.Value</pre>
<pre>            ActiveCell.Offset(0, -1).Range("A1").Select</pre>
<pre>            'Reset</pre>
<pre>            Windows("prod_saltsnck.xlsx").Activate</pre>
<pre>            Range("H2").Select</pre>
<pre>            bolFoundItem = False</pre>
<pre>            i = 1</pre>
<pre>            ' Again!</pre>
<pre>        Else</pre>
<pre>            ActiveCell.Offset(1, 0).Range("A1").Select</pre>
<pre>        End If</pre>
<pre>        If i &gt; 18000 Then</pre>
<pre>            bolFoundItem = True</pre>
<pre>            Windows("SaltySnack_Sales.xlsx").Activate</pre>
<pre>            ActiveCell.Offset(0, 2).Range("A1").Select</pre>
<pre>            ActiveCell.Value = "Unknown"</pre>
<pre>            ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>            ActiveCell.Value = "Unknown"</pre>
<pre>            ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>            ActiveCell.Value = "Unknown"</pre>
<pre>            ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>            ActiveCell.Value = "Unknown"</pre>
<pre>            'Move back</pre>
<pre>            ActiveCell.Offset(0, -5).Range("A1").Select</pre>
<pre>            'Grab the next value(s)</pre>
<pre>            ActiveCell.Offset(1, 0).Range("A1").Select</pre>
<pre>            vendcode = ActiveCell.Value</pre>
<pre>            ActiveCell.Offset(0, 1).Range("A1").Select</pre>
<pre>            itemcode = ActiveCell.Value</pre>
<pre>            ActiveCell.Offset(0, -1).Range("A1").Select</pre>
<pre>            'Reset</pre>
<pre>            Windows("prod_saltsnck.xlsx").Activate</pre>
<pre>            Range("H2").Select</pre>
<pre>            bolFoundItem = False</pre>
<pre>            i = 1</pre>
<pre>            ' Again!</pre>
<pre>        End If</pre>
<pre>        If Len(Trim(vendcode)) &lt; 2 Then</pre>
<pre>            If Len(Trim(itemcode)) &lt; 2 Then</pre>
<pre>                Exit Sub</pre>
<pre>            End If</pre>
<pre>        End If</pre>
<pre>        i = i + 1</pre>
<pre>   Loop</pre>
<pre>End Sub</pre>
<p></p>]]></content:encoded>
			<wfw:commentRss>http://donneray.info/2012/09/findinfo-macro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Table Structure for Peachtree</title>
		<link>http://donneray.info/2012/08/table-structure-for-peachtree/</link>
		<comments>http://donneray.info/2012/08/table-structure-for-peachtree/#comments</comments>
		<pubDate>Tue, 14 Aug 2012 20:36:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://donneray.info/?p=120</guid>
		<description><![CDATA[Although I would love to make a picture of the database tables, here are the tables anyway: ADDRESS.DAT  Customer ShipTo and Vendor RemitTo address data.  Added at V13. AFLOCAT.DAT   Lookup data for city, state, zipcode and country.  Added at V13 to support pulldown lists. ALARM.DAT  Alarm events. ALERT.DAT  Alert events. AUDITTR.DAT  Audit trail information. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Although I would love to make a picture of the database tables, here are the tables anyway:</p>
<table width="700" border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col width="117" />
<col width="64" /> </colgroup>
<tbody>
<tr>
<td width="100" height="20">ADDRESS.DAT</td>
<td width="600"> Customer ShipTo and Vendor RemitTo address data.  Added at V13.</td>
</tr>
<tr>
<td height="20">AFLOCAT.DAT</td>
<td>  Lookup data for city, state, zipcode and country.  Added at V13 to support pulldown lists.</td>
</tr>
<tr>
<td height="20">ALARM.DAT</td>
<td> Alarm events.</td>
</tr>
<tr>
<td height="20">ALERT.DAT</td>
<td> Alert events.</td>
</tr>
<tr>
<td height="20">AUDITTR.DAT</td>
<td> Audit trail information.</td>
</tr>
<tr>
<td height="20">BANKREC.DAT</td>
<td> Temporary file used for reconciliation.</td>
</tr>
<tr>
<td height="20">BOM*.DAT</td>
<td> Bill of material data for assemblies.  Added at V11.5. (Partly available with DDE.)</td>
</tr>
<tr>
<td height="20">CHART.DAT</td>
<td> Chart of Accounts data. (Available with Export and DDE.)</td>
</tr>
<tr>
<td height="20">COMPANY.DAT</td>
<td> Company specific data.  (Available with DDE.)</td>
</tr>
<tr>
<td height="20">ConnCO.DAT</td>
<td> Used to control multiple access.  Empty when PT not running.  Has record with Peachtree serial number when PT running.  Probably added at V9.</td>
</tr>
<tr>
<td height="20">COST.DAT</td>
<td> Job Cost data.  (Not available with Peachtree First Accounting.)</td>
</tr>
<tr>
<td height="20">CUSTOMER.DAT</td>
<td> Customer data. (Available with Export and DDE.)</td>
</tr>
<tr>
<td height="20">EMPLOYEE.DAT</td>
<td> Employee data. (Available with Export and DDE.)</td>
</tr>
<tr>
<td height="20">EVENTLOG.DAT</td>
<td> Log of certain transactions.</td>
</tr>
<tr>
<td height="20">FORECAST.DAT</td>
<td> Created when you use forecasting.</td>
</tr>
<tr>
<td height="20">FOREDETL.DAT</td>
<td> Created when you use forecasting.</td>
</tr>
<tr>
<td height="20">FA*.DAT</td>
<td> Fixed Asset data. (FALIMIT.DAT</td>
</tr>
<tr>
<td height="20">GENERAL.DAT</td>
<td> General and default data.  (Not available with Export.  Only  periods available with DDE.)</td>
</tr>
<tr>
<td height="20">GLCOAT.DAT</td>
<td> Text file listing the chart of accounts.  Added at V11.</td>
</tr>
<tr>
<td height="20">GRPDATA.DAT</td>
<td> Info about report groups.</td>
</tr>
<tr>
<td height="20">INVCHAIN.DAT</td>
<td> Supporting detail for line items.</td>
</tr>
<tr>
<td height="20">INVCOMP.DAT</td>
<td> Inventory assembly component data.  Possibly not used starting at V11.</td>
</tr>
<tr>
<td height="20">INVCOST.DAT</td>
<td> Details about inventory cost.</td>
</tr>
<tr>
<td height="20">INVTAG.DAT</td>
<td> Auxiliary Inventory data.</td>
</tr>
<tr>
<td height="20">JOBEST.DAT</td>
<td> Auxiliary job data.</td>
</tr>
<tr>
<td height="20">JOBTAG.DAT</td>
<td> V7 only: Auxiliary job data.</td>
</tr>
<tr>
<td height="20">JOURNAL.DAT</td>
<td> V7 only: All journal entries are stored in this one file. (Available with Export/DDE.)</td>
</tr>
<tr>
<td height="20">JRNLHDR.DAT</td>
<td>  V8 and later: Header information for all journals. (Available with Export and DDE)</td>
</tr>
<tr>
<td height="20">JRNLROW.DAT</td>
<td>  V8 and later: Detail information for all journals. (Available with Export and DDE)</td>
</tr>
<tr>
<td height="20">JRNLSNO.DAT</td>
<td>  V12 and later: Item serial number data.</td>
</tr>
<tr>
<td height="20">LINEITEM.DAT</td>
<td> Inventory item data. (Available with Export and DDE.)</td>
</tr>
<tr>
<td height="20">OLACCT.DAT</td>
<td> V13 and later: Purpose unknown.</td>
</tr>
<tr>
<td height="20">OLTRANS.DAT</td>
<td> V13 and later: Purpose unknown.</td>
</tr>
<tr>
<td height="20">PERMISS.DAT</td>
<td> User permission data.</td>
</tr>
<tr>
<td height="20">PHASE.DAT</td>
<td> Job phase data (Not available with Peachtree First Accounting)</td>
</tr>
<tr>
<td height="20">PROJECT.DAT</td>
<td> Job data.  (Available with Export and DDE.)</td>
</tr>
<tr>
<td height="20">QTYDISC.DAT</td>
<td>  V11.5 and later: Contains quantity discount data.</td>
</tr>
<tr>
<td height="20">RAISEHST.DAT</td>
<td>  V11 and later: Raise history data.  Not used in all flavors.</td>
</tr>
<tr>
<td height="20">RECPTTAG.DAT</td>
<td> Receipt tag information. Obsolete but may exist in older data.</td>
</tr>
<tr>
<td height="20">REPORT.DAT</td>
<td> Temporary report data.</td>
</tr>
<tr>
<td height="20">RPTDATA.DAT</td>
<td> Temporary report data.</td>
</tr>
<tr>
<td height="20">RptFiltS.DAT</td>
<td> V11 and later: Report Filter temporary data.</td>
</tr>
<tr>
<td height="20">RstyDef.DAT</td>
<td> V8 and later: Contains report styles for report groups.</td>
</tr>
<tr>
<td height="20">Rstyle.DAT</td>
<td> V8 and later: Contains constants for each of four styles.</td>
</tr>
<tr>
<td height="20">SORTJOB.DAT</td>
<td>  V7 only: Report speedup data.</td>
</tr>
<tr>
<td height="20">STORETRX.DAT</td>
<td> Obsolete at V13: Memorized Transaction data.</td>
</tr>
<tr>
<td height="20">STXHDR.DAT</td>
<td>  V13 and later: Memorized Transaction header data.</td>
</tr>
<tr>
<td height="20">STXROW.DAT</td>
<td>  V13 and later: Memorized Transaction detail data.</td>
</tr>
<tr>
<td height="20">TAXAUTH.DAT</td>
<td> Tax Authority data.</td>
</tr>
<tr>
<td height="20">TAXCODE.DAT</td>
<td> Sales tax data.</td>
</tr>
<tr>
<td height="20">TAXTABLE.DAT</td>
<td> Tax Table data.  (Available with DDE.)</td>
</tr>
<tr>
<td height="20">TEMPLATE.DAT</td>
<td> Stores data for template button that appears on various journal forms.</td>
</tr>
<tr>
<td height="20">TICKET.DAT</td>
<td> Ticket data. (Available with Export. Not available in First Accounting.)</td>
</tr>
<tr>
<td height="20">UNITMEAS.DAT</td>
<td>  V11.5 and later: Unit of measure data.</td>
</tr>
<tr>
<td height="20">UPS*.DAT</td>
<td> V12 and later: UPS Shipping information.</td>
</tr>
<tr>
<td height="20">UserPref.DAT</td>
<td> V8 and later: PT Today settings.</td>
</tr>
<tr>
<td height="20">VENDINS.DAT</td>
<td> V13 and later: Vendor insurance data.</td>
</tr>
<tr>
<td height="20">VENDOR.DAT</td>
<td> Vendor data. (Available with Export and DDE.)</td>
</tr>
<tr>
<td height="20">WORKTKT.DAT</td>
<td> V11.5 and later: Work Ticket data.</td>
</tr>
</tbody>
</table>
<p></p>]]></content:encoded>
			<wfw:commentRss>http://donneray.info/2012/08/table-structure-for-peachtree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
