<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Creating QuickBooks Invoices with Adobe Acrobat Pro</title>
	<atom:link href="http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/feed/" rel="self" type="application/rss+xml" />
	<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/</link>
	<description>How to make QuickBooks work for you...</description>
	<lastBuildDate>Wed, 08 Feb 2012 22:51:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Harley Davis</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-2/#comment-7064</link>
		<dc:creator>Harley Davis</dc:creator>
		<pubDate>Wed, 30 Mar 2011 17:18:27 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-7064</guid>
		<description>I work as a freelance technical service and support tech.  I do some basic software training, and I&#039;ve found a few problems like this popping up with different software.  It&#039;s not just a problem with adobe.  Yeah, they could make it easier to utilize the typing methods, but that&#039;s not the real problem.  If you have thousands of items, there&#039;s almost no way to keep track of them in adobe and allow them to be entered easily.  You can try the following... Check to see that your list in QB is in alphabetical order.  If not, it creates a problem for any import export operation.  If the list isn&#039;t alphabetical, exporting the programming to adobe Might not magically sort it for you.  If the number of items is constantly changing, you&#039;re stuck again.  You&#039;ll have to update everybody&#039;s listings over and over.  Which is more difficult?  Starting over with a new datafile and trying to import your old data wo you can use an alphabetical list that won&#039;t stay alphabetical, or using a number system instead, which you have to give some kind of listing for so whoever uses the form knows what they are entering?  Better way: Hide the item box behind another box... ...A text box.  Type items in Quickbooks with all one case... ...either all caps or all lowercase.  Use javascript on the textbox to convert what&#039;s typed to all that case, then check it against a text based item list embedded as a page javasript string array or structure that has already been sorted (use excel to alphabetize, but give a number with it that coresponds to the item list placement and place a copy of both of those fields in their own structure.  Run a binary search tree on the text structure, and make sure to keep track of the index of the array.  When you find a match, use the index to call the index of the number structure, use the number at the given index to seed the item list box with an index, hide the text box and show the item list box.  Put quotes around your text in excel, and you&#039;ll be able to copy, paste, and make a csv, open in a simple text editor, select all, copy paste over the text in the embedded data structure, and easily update your form as your item lists change. Just some copy and paste work (1 hour maximum).  I&#039;d give out the javascript here if I was really good with it, unfortunately the JScript and I have only a hi and Bye passing familiarity.  I know some people who say it can be done, if you know how to work within java and javascript.  I don&#039;t have much knowledge of Java.  Procedural C, C++ and some basic Java.  I can work with algorithmic design pretty well though.  I&#039;m great with basic logic, just not the connection to code (not a great memory for linguistics; and code is language).  I am doing some work with it though.  Hopefully, in the near future I can provide you with all of it (YES FREE!!!  I work on a mac, fix some WINPC and sometimes help guys with logic for coding or wrapping programs from WINPC for UNIX; I don&#039;t make a lot of $$ as a freelancer, so I&#039;m a big fan of FREE or OPEN solutions).</description>
		<content:encoded><![CDATA[<p>I work as a freelance technical service and support tech.  I do some basic software training, and I&#8217;ve found a few problems like this popping up with different software.  It&#8217;s not just a problem with adobe.  Yeah, they could make it easier to utilize the typing methods, but that&#8217;s not the real problem.  If you have thousands of items, there&#8217;s almost no way to keep track of them in adobe and allow them to be entered easily.  You can try the following&#8230; Check to see that your list in QB is in alphabetical order.  If not, it creates a problem for any import export operation.  If the list isn&#8217;t alphabetical, exporting the programming to adobe Might not magically sort it for you.  If the number of items is constantly changing, you&#8217;re stuck again.  You&#8217;ll have to update everybody&#8217;s listings over and over.  Which is more difficult?  Starting over with a new datafile and trying to import your old data wo you can use an alphabetical list that won&#8217;t stay alphabetical, or using a number system instead, which you have to give some kind of listing for so whoever uses the form knows what they are entering?  Better way: Hide the item box behind another box&#8230; &#8230;A text box.  Type items in Quickbooks with all one case&#8230; &#8230;either all caps or all lowercase.  Use javascript on the textbox to convert what&#8217;s typed to all that case, then check it against a text based item list embedded as a page javasript string array or structure that has already been sorted (use excel to alphabetize, but give a number with it that coresponds to the item list placement and place a copy of both of those fields in their own structure.  Run a binary search tree on the text structure, and make sure to keep track of the index of the array.  When you find a match, use the index to call the index of the number structure, use the number at the given index to seed the item list box with an index, hide the text box and show the item list box.  Put quotes around your text in excel, and you&#8217;ll be able to copy, paste, and make a csv, open in a simple text editor, select all, copy paste over the text in the embedded data structure, and easily update your form as your item lists change. Just some copy and paste work (1 hour maximum).  I&#8217;d give out the javascript here if I was really good with it, unfortunately the JScript and I have only a hi and Bye passing familiarity.  I know some people who say it can be done, if you know how to work within java and javascript.  I don&#8217;t have much knowledge of Java.  Procedural C, C++ and some basic Java.  I can work with algorithmic design pretty well though.  I&#8217;m great with basic logic, just not the connection to code (not a great memory for linguistics; and code is language).  I am doing some work with it though.  Hopefully, in the near future I can provide you with all of it (YES FREE!!!  I work on a mac, fix some WINPC and sometimes help guys with logic for coding or wrapping programs from WINPC for UNIX; I don&#8217;t make a lot of $$ as a freelancer, so I&#8217;m a big fan of FREE or OPEN solutions).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-2/#comment-6471</link>
		<dc:creator>Charlie</dc:creator>
		<pubDate>Fri, 03 Dec 2010 21:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-6471</guid>
		<description>I doubt that Adobe is going to update this feature, although I can&#039;t say for sure. It uses the SDK, and Intuit is trying to push developers a different direction. And Adobe hasn&#039;t seen a lot of interest in this. I&#039;ve not heard anything from Adobe about this for a long time.

The issue with the Canadian version would have to do with the Adobe side of things, SDK applications can be set to treat the Canadian version differently, and it sounds like Adobe didn&#039;t make their program flexible enough to accomodate that.</description>
		<content:encoded><![CDATA[<p>I doubt that Adobe is going to update this feature, although I can&#8217;t say for sure. It uses the SDK, and Intuit is trying to push developers a different direction. And Adobe hasn&#8217;t seen a lot of interest in this. I&#8217;ve not heard anything from Adobe about this for a long time.</p>
<p>The issue with the Canadian version would have to do with the Adobe side of things, SDK applications can be set to treat the Canadian version differently, and it sounds like Adobe didn&#8217;t make their program flexible enough to accomodate that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Genaro</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-2/#comment-6469</link>
		<dc:creator>Genaro</dc:creator>
		<pubDate>Fri, 03 Dec 2010 16:39:16 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-6469</guid>
		<description>Just in case any Canadians are reading this, it doesn&#039;t work for the Canadian Edition of Quickbooks :*( spent hours trying to make it work without success. QB doesn&#039;t recognize the connection.(QB Pro 2011 and Adobe Pro 9)

If this ever changes in the future please post a reply to this comment. Thanks!</description>
		<content:encoded><![CDATA[<p>Just in case any Canadians are reading this, it doesn&#8217;t work for the Canadian Edition of Quickbooks :*( spent hours trying to make it work without success. QB doesn&#8217;t recognize the connection.(QB Pro 2011 and Adobe Pro 9)</p>
<p>If this ever changes in the future please post a reply to this comment. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-2/#comment-2387</link>
		<dc:creator>Charlie</dc:creator>
		<pubDate>Mon, 04 May 2009 20:36:58 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-2387</guid>
		<description>Jonathan: I believe that you have to edit the template, but I haven&#039;t played with that aspect of things. The resulting form has database information in it, and you have to be careful when editing that. They may lock it down to prevent fraud. But I haven&#039;t played with it.</description>
		<content:encoded><![CDATA[<p>Jonathan: I believe that you have to edit the template, but I haven&#8217;t played with that aspect of things. The resulting form has database information in it, and you have to be careful when editing that. They may lock it down to prevent fraud. But I haven&#8217;t played with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan W</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-2/#comment-2385</link>
		<dc:creator>Jonathan W</dc:creator>
		<pubDate>Mon, 04 May 2009 15:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-2385</guid>
		<description>Charlie-

This was very helpful. Although i have run into a bit of a snag you might be able to help with. I have customized the invoice and proposals we use in quickbooks. I have them saved as PDF&#039;s. When i open them up in adobe, they cant be edited. Im guessing then that only the templates that are in the adobe program files can actually be edited and sent out. If its possible to use our own form in adobe, i would love to know how to do it. Thank you.</description>
		<content:encoded><![CDATA[<p>Charlie-</p>
<p>This was very helpful. Although i have run into a bit of a snag you might be able to help with. I have customized the invoice and proposals we use in quickbooks. I have them saved as PDF&#8217;s. When i open them up in adobe, they cant be edited. Im guessing then that only the templates that are in the adobe program files can actually be edited and sent out. If its possible to use our own form in adobe, i would love to know how to do it. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-2/#comment-2352</link>
		<dc:creator>Charlie</dc:creator>
		<pubDate>Wed, 29 Apr 2009 16:03:59 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-2352</guid>
		<description>CJ: I think so, although I&#039;m not sure. The problem is that it would be a fairly complicated thing to set up. You don&#039;t have a good example to start with, so you would have to do a lot of &quot;programming&quot; work in Adobe to get that to work.</description>
		<content:encoded><![CDATA[<p>CJ: I think so, although I&#8217;m not sure. The problem is that it would be a fairly complicated thing to set up. You don&#8217;t have a good example to start with, so you would have to do a lot of &#8220;programming&#8221; work in Adobe to get that to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CJ</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-2/#comment-2351</link>
		<dc:creator>CJ</dc:creator>
		<pubDate>Wed, 29 Apr 2009 15:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-2351</guid>
		<description>Charlie - 

Great article and web site. Thanks for all the help. Would it be possible to use the adobe forms as a timesheet for employees to track time against different clients/customers?

Thanks</description>
		<content:encoded><![CDATA[<p>Charlie &#8211; </p>
<p>Great article and web site. Thanks for all the help. Would it be possible to use the adobe forms as a timesheet for employees to track time against different clients/customers?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-1/#comment-2347</link>
		<dc:creator>Charlie</dc:creator>
		<pubDate>Tue, 28 Apr 2009 02:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-2347</guid>
		<description>John, you can contact me directly at the email address in the &quot;about&quot; link at the top of this page. I do work with Adobe forms, but I&#039;m finding that more often than not we end up writing a custom QB program rather than using the Adobe forms. Adobe integration is expensive and complicated, and it only makes sense if you are distributing forms out to people who don&#039;t have ready access to the QB company file.</description>
		<content:encoded><![CDATA[<p>John, you can contact me directly at the email address in the &#8220;about&#8221; link at the top of this page. I do work with Adobe forms, but I&#8217;m finding that more often than not we end up writing a custom QB program rather than using the Adobe forms. Adobe integration is expensive and complicated, and it only makes sense if you are distributing forms out to people who don&#8217;t have ready access to the QB company file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Beem</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-1/#comment-2345</link>
		<dc:creator>John Beem</dc:creator>
		<pubDate>Tue, 28 Apr 2009 01:40:51 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-2345</guid>
		<description>Do you know of any consultants (possibly yourself) who can design new Adobe Forms to integrate with QuickBooks. We are trying to automate check requests and Petty Cash reconciliations. As you say it is quite complicated, and while I could, theoretically learn how to do it myself, I am not going to do it often enough to get good at it.</description>
		<content:encoded><![CDATA[<p>Do you know of any consultants (possibly yourself) who can design new Adobe Forms to integrate with QuickBooks. We are trying to automate check requests and Petty Cash reconciliations. As you say it is quite complicated, and while I could, theoretically learn how to do it myself, I am not going to do it often enough to get good at it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie</title>
		<link>http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/comment-page-1/#comment-2314</link>
		<dc:creator>Charlie</dc:creator>
		<pubDate>Thu, 23 Apr 2009 16:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://qbblog.ccrsoftware.info/2008/10/creating-quickbooks-invoices-with-adobe-acrobat-pro/#comment-2314</guid>
		<description>Tim, you can&#039;t just shift things around, you have to use the features they have built into Adobe to manage the QB database. It is very complicated, because they are just using the standard QB SDK programming interface and that is itself very complicated to understand. I doubt that Adobe is going to do much to improve this, although I can&#039;t say that for sure.</description>
		<content:encoded><![CDATA[<p>Tim, you can&#8217;t just shift things around, you have to use the features they have built into Adobe to manage the QB database. It is very complicated, because they are just using the standard QB SDK programming interface and that is itself very complicated to understand. I doubt that Adobe is going to do much to improve this, although I can&#8217;t say that for sure.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

