<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://devpinoy.org/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>Keith Rull - All Comments</title><link>http://devpinoy.org/blogs/keithrull/default.aspx</link><description>a blog from a Filipino .NET Developer and a true advocate of technology.</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>re: Creating MySQL DB Backups in PHP</title><link>http://devpinoy.org/blogs/keithrull/archive/2005/09/28/348.aspx#35674</link><pubDate>Wed, 10 Mar 2010 02:25:06 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:35674</guid><dc:creator>follen4U</dc:creator><description>&lt;p&gt;paps panu kung lahat ng table ibaback-up??&lt;/p&gt;
&lt;p&gt;ung sample mu kase ung $tablename isa lng ung value nya..i mean isang table lng...panu pag mdame?&lt;/p&gt;
&lt;p&gt;thns sa reply moh dude...hihi&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35674" width="1" height="1"&gt;</description></item><item><title>re: Programmatically List All SQL Servers And Their Databases Using SMO </title><link>http://devpinoy.org/blogs/keithrull/archive/2006/06/08/Programmatically-List-All-SQL-Servers-And-Their-Databases-Using-SMO-.aspx#35490</link><pubDate>Thu, 17 Dec 2009 01:30:17 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:35490</guid><dc:creator>alcheser</dc:creator><description>&lt;p&gt;I am running your program (Programmatically List All SQL Servers And Their Databases Using SMO)..&lt;/p&gt;
&lt;p&gt;I have two servers running on my computer (QUADPLUS and QUADPLUS\SQLEXPRESS), but your program only lists the QUADPLUS\SQLEXPRESS??&lt;/p&gt;
&lt;p&gt;Any ideas why?&lt;/p&gt;
&lt;p&gt;I have tried both versions listed above.&lt;/p&gt;
&lt;p&gt;QUADPLUS is my computer name.&lt;/p&gt;
&lt;p&gt;I have both SQL SERVER 2008 enterprise and SQL SERVER 2005 express installed on my computer.&lt;/p&gt;
&lt;p&gt;Thanks in advance,&lt;/p&gt;
&lt;p&gt;Al Cheser&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35490" width="1" height="1"&gt;</description></item><item><title>re: How To: Create Zip Files In C# with SharpZipLib (#ZipLib)</title><link>http://devpinoy.org/blogs/keithrull/archive/2008/01/25/how-to-create-zip-files-in-c-with-sharpziplib-ziplib.aspx#35404</link><pubDate>Sat, 14 Nov 2009 00:16:31 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:35404</guid><dc:creator>smitty2</dc:creator><description>&lt;p&gt;to fix the directory structure issue (where you extract a ZIP and it builds the entire directory structure to the original file path you zipped), use the other overload for AddFile():&lt;/p&gt;
&lt;p&gt;string ZipOutputFilePath = FilePathNoSuffix + &amp;quot;.zip&amp;quot;;&lt;/p&gt;
&lt;p&gt;				ZipFile z = ZipFile.Create(ZipOutputFilePath);&lt;/p&gt;
&lt;p&gt;				z.BeginUpdate();&lt;/p&gt;
&lt;p&gt;				z.Add(FixedPath, Path.GetFileName(FixedPath));&lt;/p&gt;
&lt;p&gt;				z.CommitUpdate();&lt;/p&gt;
&lt;p&gt;				z.Close();&lt;/p&gt;
&lt;p&gt;This would fix the same scenario that Princy mentioned above.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35404" width="1" height="1"&gt;</description></item><item><title>re: [Updated] How To: Merge Multiple Microsoft Word Documents</title><link>http://devpinoy.org/blogs/keithrull/archive/2007/06/09/updated-how-to-merge-multiple-microsoft-word-documents.aspx#35228</link><pubDate>Thu, 13 Aug 2009 11:58:04 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:35228</guid><dc:creator>yayaxoxo</dc:creator><description>&lt;p&gt;Dear Keith, It is great artical to combine documents. good work. &lt;/p&gt;
&lt;p&gt;I would like to ask you about change the page orientation. &lt;/p&gt;
&lt;p&gt;How can I change the selected pages orientation while adding file to word. 1st word document&amp;#39;s page will be landscape 2nd word document&amp;#39;s page will be portrait and 3rd landscape 4th ... etc. &lt;/p&gt;
&lt;p&gt;foreach (string file in filesToMerge)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;i = i + 1;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;selection.InsertBreak(ref pageBreak);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (i % 2 == 0)&lt;/p&gt;
&lt;p&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;selection.PageSetup.Orientation = Microsoft.Office.Interop.Word.WdOrientation.wdOrientPortrait;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;/p&gt;
&lt;p&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;selection.PageSetup.Orientation = Microsoft.Office.Interop.Word.WdOrientation.wdOrientLandscape;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;breakStop++;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Insert the files to our template&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;selection.InsertFile(&lt;/p&gt;
&lt;p&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;file&lt;/p&gt;
&lt;p&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;, ref missing&lt;/p&gt;
&lt;p&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;, ref missing&lt;/p&gt;
&lt;p&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;, ref missing&lt;/p&gt;
&lt;p&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;, ref missing);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//Do we want page breaks added after each documents?&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (insertPageBreaks &amp;amp;&amp;amp; breakStop != documentCount)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&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;selection.InsertBreak(ref pageBreak);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35228" width="1" height="1"&gt;</description></item><item><title>re: Disconnected ADO.NET DataSet Example</title><link>http://devpinoy.org/blogs/keithrull/archive/2005/08/23/91.aspx#35184</link><pubDate>Mon, 03 Aug 2009 15:21:49 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:35184</guid><dc:creator>abhi</dc:creator><description>&lt;p&gt;Hi Keith,&lt;/p&gt;
&lt;p&gt;I was looking up disconnected recordset, when I came across this article. I have been trying to find code that will allow me to update an existing table with a disconnected dataset. Do you have a specific link, you can point me to?&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35184" width="1" height="1"&gt;</description></item><item><title>re: How To: Convert an Image to Grayscale</title><link>http://devpinoy.org/blogs/keithrull/archive/2006/12/05/how-to-convert-an-image-to-grayscale.aspx#35164</link><pubDate>Mon, 27 Jul 2009 06:08:10 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:35164</guid><dc:creator>Anna</dc:creator><description>&lt;p&gt;Hi. Will this work in Silverlight 2?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35164" width="1" height="1"&gt;</description></item><item><title>re: How To: Convert an Image to Grayscale</title><link>http://devpinoy.org/blogs/keithrull/archive/2006/12/05/how-to-convert-an-image-to-grayscale.aspx#35163</link><pubDate>Mon, 27 Jul 2009 05:58:53 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:35163</guid><dc:creator>Anna</dc:creator><description>&lt;p&gt;Hi. Will this work in silverlight 2?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35163" width="1" height="1"&gt;</description></item><item><title>Re viagra cello.</title><link>http://devpinoy.org/blogs/keithrull/archive/2008/10/21/devpinoy-code-contest-for-october-2008.aspx#34962</link><pubDate>Sat, 04 Jul 2009 14:01:49 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:34962</guid><dc:creator>Viagra.</dc:creator><description>&lt;p&gt;Viagra. Cheap viagra. Viagra on line. Buying overnight viagra. Generic viagra. Taking viagra with cialis. Viagra without a prescription.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=34962" width="1" height="1"&gt;</description></item><item><title>re: Sorting a Generic List of Object in C# using IComparable and Anonymous Delegates</title><link>http://devpinoy.org/blogs/keithrull/archive/2007/03/23/sorting-a-generic-list-of-object-in-c-using-icomparable-and-anonymous-delegates.aspx#34936</link><pubDate>Fri, 26 Jun 2009 18:38:36 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:34936</guid><dc:creator>jwatte</dc:creator><description>&lt;p&gt;There&amp;#39;s actually a bug in this code, right? If you look at the lists, they are not properly sorted.&lt;/p&gt;
&lt;p&gt;In the second case, the bug is this:&lt;/p&gt;
&lt;p&gt;if (other.CutenessFactor &amp;gt; this.CutenessFactor)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;returnValue = 0;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; }&lt;/p&gt;
&lt;p&gt;This should not return 0, because 0 means &amp;quot;equal.&amp;quot;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=34936" width="1" height="1"&gt;</description></item><item><title>Amoxicillin without a prescription.</title><link>http://devpinoy.org/blogs/keithrull/archive/2007/01/02/asymmetric-accessor-accessibility.aspx#34903</link><pubDate>Fri, 12 Jun 2009 07:38:55 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:34903</guid><dc:creator>Amoxicillin side effects.</dc:creator><description>&lt;p&gt;Amoxicillin. Amoxicillin dosage. Amoxicillin expiry. Prescription free amoxicillin. Amoxicillin trihydrate.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=34903" width="1" height="1"&gt;</description></item><item><title>Buy vicodin without script.</title><link>http://devpinoy.org/blogs/keithrull/archive/2007/01/02/asymmetric-accessor-accessibility.aspx#34883</link><pubDate>Mon, 08 Jun 2009 01:48:23 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:34883</guid><dc:creator>Effects of vicodin.</dc:creator><description>&lt;p&gt;Signs of vicodin addictio. Vicodin. Prescriptions drugs pharmacy online vicodin. Vicodin addiction. Codeine vicodin. Vicodin detox. Purchase vicodin online. Buy vicodin.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=34883" width="1" height="1"&gt;</description></item><item><title>Tramadol.</title><link>http://devpinoy.org/blogs/keithrull/archive/2007/01/02/asymmetric-accessor-accessibility.aspx#34858</link><pubDate>Wed, 03 Jun 2009 01:01:00 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:34858</guid><dc:creator>Tramadol hcl.</dc:creator><description>&lt;p&gt;Tramadol dog. Tramadol.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=34858" width="1" height="1"&gt;</description></item><item><title>Order phentermine.</title><link>http://devpinoy.org/blogs/keithrull/archive/2007/01/02/asymmetric-accessor-accessibility.aspx#34852</link><pubDate>Tue, 02 Jun 2009 01:25:15 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:34852</guid><dc:creator>Phentermine price.</dc:creator><description>&lt;p&gt;Phentermine 37 5mg. Buy phentermine. Cheap phentermine. Phentermine cheap. Phentermine free shipping.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=34852" width="1" height="1"&gt;</description></item><item><title>Hydrocodone.</title><link>http://devpinoy.org/blogs/keithrull/archive/2007/01/02/asymmetric-accessor-accessibility.aspx#34846</link><pubDate>Sun, 31 May 2009 23:56:12 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:34846</guid><dc:creator>Hydrocodone.</dc:creator><description>&lt;p&gt;Hydrocodone no prescription. Hydrocodone. Ic hydrocodone apap 5 500. Hydrocodone extraction. Hydrocodone online. Buy hydrocodone online.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=34846" width="1" height="1"&gt;</description></item><item><title>Buy cheap phentermine.</title><link>http://devpinoy.org/blogs/keithrull/archive/2006/04/12/A-creative-way-to-promote-poverty-awareness.aspx#34839</link><pubDate>Sun, 31 May 2009 01:01:00 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:34839</guid><dc:creator>Danger of phentermine.</dc:creator><description>&lt;p&gt;Phentermine 37 5mg. Discount phentermine. Phentermine diet pills. Adipex phentermine vs. Adipexdrug addiction order phentermine online.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=34839" width="1" height="1"&gt;</description></item></channel></rss>