<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.method.me/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Method:Classic General Q&amp;amp;A</title><link>http://forums.method.me/cs/forums/13.aspx</link><description>Ask technical support questions, how do I? Questions... Or anything else you want to know from the Method Team and other Method users.</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 SP2 (Build: 31113.47)</generator><item><title>Re: report for writing checks</title><link>http://forums.method.me/cs/forums/thread/870.aspx</link><pubDate>Thu, 02 Jul 2009 20:43:03 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:870</guid><dc:creator>pholcer</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/870.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=870</wfw:commentRss><description>&lt;p&gt;That got it! THANKS!!&lt;/p&gt;</description></item><item><title>Re: report for writing checks</title><link>http://forums.method.me/cs/forums/thread/864.aspx</link><pubDate>Thu, 02 Jul 2009 16:19:52 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:864</guid><dc:creator>Anonymous</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/864.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=864</wfw:commentRss><description>&lt;p&gt;Hi Phillip, &lt;/p&gt;
&lt;p&gt;In that case, you can change the BeforePrint script on the CheckCents object to:&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Private Sub OnBeforePrint(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintEventArgs)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dim intCents as Decimal&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39;Get the value after the decimal&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; intCents = fldAmount.text - Microsoft.VisualBasic.Fix(fldAmount.Text) &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39;multiply by 100 to bring two decimal places in front of decimal&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; intCents = intCents * 100&lt;br /&gt;intCents = Microsoft.VisualBasic.Format(Microsoft.VisualBasic.Val(intCents), &amp;quot;#0&amp;quot;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39;remove value after decimal, add leading 0 if less than 10&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Microsoft.VisualBasic.Int(intCents) &amp;lt; 10 Then&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CheckCents.Text = &amp;quot;0&amp;quot; &amp;amp; Microsoft.VisualBasic.Int(intCents)&amp;nbsp;&amp;nbsp; &amp;amp; &amp;quot; / 100&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CheckCents.Text = Microsoft.VisualBasic.Int(intCents)&amp;nbsp;&amp;nbsp; &amp;amp; &amp;quot; / 100&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br /&gt;End Sub&lt;/p&gt;</description></item><item><title>Re: report for writing checks</title><link>http://forums.method.me/cs/forums/thread/860.aspx</link><pubDate>Thu, 02 Jul 2009 04:44:54 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:860</guid><dc:creator>pholcer</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/860.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=860</wfw:commentRss><description>&lt;p&gt;Amanda, &lt;/p&gt;
&lt;p&gt;I ran into one issue. When the cents are 0-9, then the report prints 0/100 or 1/100 or 2/100. &lt;/p&gt;
&lt;p&gt;Since this is printing onto checks, you&amp;#39;ll want it to be 00/100 or 01/100 or 02/100. &lt;/p&gt;
&lt;p&gt;I found VB formatting information on # and 0s but none of that seemed to apply to this report when I plugged it into the sub routine. &lt;/p&gt;
&lt;p&gt;Any thoughts???&lt;/p&gt;
&lt;p&gt;Thanks much!!&lt;/p&gt;</description></item><item><title>Re: report for writing checks</title><link>http://forums.method.me/cs/forums/thread/859.aspx</link><pubDate>Thu, 02 Jul 2009 00:38:16 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:859</guid><dc:creator>pholcer</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/859.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=859</wfw:commentRss><description>&lt;p&gt;Have you ever seen someone do a happy dance? &lt;/p&gt;
&lt;p&gt;This is EXACTLY what I&amp;#39;m looking for! THANKS!!&lt;/p&gt;</description></item><item><title>Re: report for writing checks</title><link>http://forums.method.me/cs/forums/thread/855.aspx</link><pubDate>Wed, 01 Jul 2009 18:56:08 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:855</guid><dc:creator>pholcer</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/855.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=855</wfw:commentRss><description>&lt;p&gt;awesome. Thanks! I need to have this ready to bring a client on board before their QB payroll subscription renews on the 7th of this month. Sounds like the timing is perfect. Thanks again for all your help! I&amp;#39;ll dig into it this evening.&lt;/p&gt;</description></item><item><title>Re: report for writing checks</title><link>http://forums.method.me/cs/forums/thread/849.aspx</link><pubDate>Wed, 01 Jul 2009 17:29:21 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:849</guid><dc:creator>Anonymous</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/849.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=849</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;&lt;br /&gt;Hi Phillip,&lt;/p&gt;
&lt;p&gt;Talk about timing, we have already created this in the &amp;ldquo;labs&amp;rdquo; and were waiting for the dropdown update from earlier this week before we started pushing the screens out.&amp;nbsp; We haven&amp;rsquo;t pushed them out yet, but if you you&amp;#39;re in a&amp;nbsp; hurry I&amp;#39;ll give you a hint on what you can do. ;) &lt;br /&gt;Import the screen CheckWithPreview from the Method Library and you can then use that screen to view your checks or you can do some &amp;#39;reverse engineering&amp;#39; and finish up the report you are working on.&amp;nbsp; You can do this by checking out the &amp;ldquo;Before Print&amp;rdquo; script of the CheckAmountToWord object on the report.&amp;nbsp; This script is basically a formula that would take the amount and convert it into words - exactly what you are looking for.&lt;/p&gt;</description></item><item><title>Re: report for writing checks</title><link>http://forums.method.me/cs/forums/thread/843.aspx</link><pubDate>Tue, 30 Jun 2009 23:51:26 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:843</guid><dc:creator>pholcer</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/843.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=843</wfw:commentRss><description>&lt;p&gt;Got it! That worked! Thanks!!&lt;br /&gt;One other item I&amp;#39;ve hit a wall on. The dollar amount spelled out in text (for example: Fifty Dollars and 00/100 ***************). &lt;/p&gt;
&lt;p&gt;Any ideas on that? Is it formatting? A different table field? &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks much!!&lt;/p&gt;</description></item><item><title>Re: report for writing checks</title><link>http://forums.method.me/cs/forums/thread/839.aspx</link><pubDate>Tue, 30 Jun 2009 14:24:46 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:839</guid><dc:creator>Anonymous</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/839.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=839</wfw:commentRss><description>&lt;p&gt;Hi Philip, &lt;/p&gt;
&lt;p&gt;You need to edit the generate report action to pull the Record ID of the Check from the current session. Hint - take a look at the Invoice print preview button actions that will guide you in the right direction ;)&amp;nbsp; Let me know if it works.&amp;nbsp;&amp;nbsp; &lt;/p&gt;</description></item><item><title>report for writing checks</title><link>http://forums.method.me/cs/forums/thread/838.aspx</link><pubDate>Tue, 30 Jun 2009 05:45:57 GMT</pubDate><guid isPermaLink="false">3393c1ec-311b-4812-96cb-ad8c611bba4f:838</guid><dc:creator>pholcer</dc:creator><slash:comments>0</slash:comments><comments>http://forums.method.me/cs/forums/thread/838.aspx</comments><wfw:commentRss>http://forums.method.me/cs/forums/commentrss.aspx?SectionID=13&amp;PostID=838</wfw:commentRss><description>&lt;p&gt;Hello! Just hoping for a simple solution here. :)&lt;/p&gt;
&lt;p&gt;I have created a report that is pulling in check data. I&amp;#39;m having trouble finding a way to tell the report only to pull the current check. It is pulling all checks and displaying in the report. I want to just display the current check. The end result is to be able to print hardcopy checks from Method. This is the only piece I&amp;#39;m missing so far. &lt;/p&gt;
&lt;p&gt;Thanks!!&lt;br /&gt;Phillip&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>