<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://codebetter.com/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>Grant Killian's Blog - All Comments</title><link>http://codebetter.com/blogs/grant.killian/default.aspx</link><description>No, this has nothing to do with beer -- but maybe it should?</description><dc:language>en</dc:language><generator>CommunityServer 2007 (Build: 20416.853)</generator><item><title>re: CodingWorse with a try{}catch{} solution?</title><link>http://codebetter.com/blogs/grant.killian/archive/2005/01/27/48340.aspx#176903</link><pubDate>Tue, 22 Apr 2008 19:45:17 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:176903</guid><dc:creator>Eddie</dc:creator><description>&lt;p&gt;Hi, first: Sorry for my bad english :-) - it's a bit rusty. Very good and informative post! Thank you.&lt;/p&gt;
&lt;p&gt;I'm very new to C# and just started/finished reading books/online articles about exception handling with try catch. Well, if you say not to use try catch you mean this &amp;quot;not to use this combo inside loops/methods for something like isNummeric&amp;quot; - right?&lt;/p&gt;
&lt;p&gt;But in case for Exceptions (example wrong format catching ReadLine) ... so what to do? John Sharp MS Visual C# Step by Step Page 100 says &amp;quot;Exceptions are the object-oriented way of error handling&amp;quot;. I'm a little confused.&lt;/p&gt;
&lt;p&gt;Greetings from Germany.&lt;/p&gt;
&lt;p&gt;Eddie&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=176903" width="1" height="1"&gt;</description></item><item><title>re: DataReader to DataTable sample code</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/03/23/9819.aspx#176462</link><pubDate>Tue, 08 Apr 2008 12:07:06 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:176462</guid><dc:creator>chiaty</dc:creator><description>&lt;p&gt;john is right.. &lt;/p&gt;
&lt;p&gt;make sure you create a new dt obj,&lt;/p&gt;
&lt;p&gt;Dim dt as NEW DataTable&lt;/p&gt;
&lt;p&gt;Dim dr as SqlDataReader = ExecuteReader()&lt;/p&gt;
&lt;p&gt;dt.load(dr)&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=176462" width="1" height="1"&gt;</description></item><item><title>re: Daemon-Tools for ISO images</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/05/20/14078.aspx#175960</link><pubDate>Thu, 27 Mar 2008 13:53:51 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:175960</guid><dc:creator>Log</dc:creator><description>&lt;p&gt; 4 virtual drives at once Is this limit for M Xp ? wat @ vista is it a same?&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=175960" width="1" height="1"&gt;</description></item><item><title>re: httpRuntime and File Upload Limits</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/01/14/5596.aspx#175912</link><pubDate>Wed, 26 Mar 2008 20:38:17 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:175912</guid><dc:creator>Gus O.</dc:creator><description>&lt;p&gt;What is the maximum size a buffer can have?&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=175912" width="1" height="1"&gt;</description></item><item><title>re: DataReader to DataTable sample code</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/03/23/9819.aspx#175210</link><pubDate>Tue, 11 Mar 2008 18:01:53 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:175210</guid><dc:creator>John</dc:creator><description>&lt;p&gt;Actually, the datatable doesn't have a fill, but you can use the &amp;quot;load&amp;quot; method to load a datareaders (of those that implement iDataReader).&lt;/p&gt;
&lt;p&gt;dt.load(dr)&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=175210" width="1" height="1"&gt;</description></item><item><title>re: Daemon-Tools for ISO images</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/05/20/14078.aspx#174832</link><pubDate>Sat, 01 Mar 2008 23:48:39 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:174832</guid><dc:creator>Nick</dc:creator><description>&lt;p&gt;At Jon. Google Yasu and the first link you get will be for a download. then put the yasu.exe in the daemon tools directory and you should be set.&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=174832" width="1" height="1"&gt;</description></item><item><title>re: DataReader to DataTable sample code</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/03/23/9819.aspx#172872</link><pubDate>Wed, 09 Jan 2008 08:47:03 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:172872</guid><dc:creator>ANANDA BABU KARTHIKEYAN</dc:creator><description>&lt;p&gt;Instead of doing this you can use following code&lt;/p&gt;
&lt;p&gt;Dim dt as DataTable&lt;/p&gt;
&lt;p&gt;Dim dr as SqlDataReader = ExecuteReader()&lt;/p&gt;
&lt;p&gt;dt.Fill(dr)&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=172872" width="1" height="1"&gt;</description></item><item><title>re: Powerful Web Charting with NPlot</title><link>http://codebetter.com/blogs/grant.killian/archive/2005/03/09/59501.aspx#172651</link><pubDate>Thu, 03 Jan 2008 21:33:55 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:172651</guid><dc:creator>Sean Houng</dc:creator><description>&lt;p&gt;Is there a way to show the data (coordinate values) of a point in the line plot?&lt;/p&gt;
&lt;p&gt;For example, in Carlos Aguilar's webchart, the line chart can show them through the code &amp;quot;linechart.datalabels.visible = true&amp;quot;.&lt;/p&gt;
&lt;p&gt;Is there a similar call in NPlot's tool?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=172651" width="1" height="1"&gt;</description></item><item><title>re: MakeCert Make Me Happy</title><link>http://codebetter.com/blogs/grant.killian/archive/2003/11/23/3911.aspx#170985</link><pubDate>Thu, 15 Nov 2007 07:19:40 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:170985</guid><dc:creator>ducnv</dc:creator><description>&lt;p&gt;i want to export file *pvk from CA on Window 2003 but it's not found. what can i do ???&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=170985" width="1" height="1"&gt;</description></item><item><title>re: Powerful Web Charting with NPlot</title><link>http://codebetter.com/blogs/grant.killian/archive/2005/03/09/59501.aspx#169703</link><pubDate>Sun, 14 Oct 2007 07:53:06 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:169703</guid><dc:creator>Ariane</dc:creator><description>&lt;p&gt;Its a great example ! Thanks !!&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=169703" width="1" height="1"&gt;</description></item><item><title>re: Dude, I hate MS Access . . . TechEd take me away</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/05/20/14111.aspx#169554</link><pubDate>Thu, 11 Oct 2007 06:02:25 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:169554</guid><dc:creator>Snork</dc:creator><description>&lt;p&gt;I just got a job cause I knew Access. I did it for the big bucks cause I just got laid off two weeks before my son was born and I needed the cash fast. I just dont understand why talented programmers end up at MS putting out POS crap like Access. Working in Access for me is like being buried alive with Bill Gates. OMG. Well the money's good i guess&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=169554" width="1" height="1"&gt;</description></item><item><title>re: Haven't posted in a bit, getting back in the saddle</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/11/17/32486.aspx#168079</link><pubDate>Sun, 16 Sep 2007 16:44:21 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:168079</guid><dc:creator>ooooo</dc:creator><description>&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.ard-scopata-calda.oglhkp03.info"&gt;www.ard-scopata-calda.oglhkp03.info&lt;/a&gt; bisex inculati &lt;a rel="nofollow" target="_new" href="http://www.celebrita-a-gambe-aperte.oglhkp03.info"&gt;www.celebrita-a-gambe-aperte.oglhkp03.info&lt;/a&gt; uomini maturi porci &lt;a rel="nofollow" target="_new" href="http://www.bulma-super-sexy.oglhkp03.info"&gt;www.bulma-super-sexy.oglhkp03.info&lt;/a&gt; signore anziane video &lt;a rel="nofollow" target="_new" href="http://www.simona-ventura-foto-tette.cxobln03.info"&gt;www.simona-ventura-foto-tette.cxobln03.info&lt;/a&gt; foto cazzoni grossi &lt;a rel="nofollow" target="_new" href="http://www.bramare-fighetta-gruppo.cxobln03.info"&gt;www.bramare-fighetta-gruppo.cxobln03.info&lt;/a&gt; galleria leccate &lt;a rel="nofollow" target="_new" href="http://www.foto-di-segretarie-hard.cxobln03.info"&gt;www.foto-di-segretarie-hard.cxobln03.info&lt;/a&gt; pompino ingoia sborra &lt;a rel="nofollow" target="_new" href="http://www.zie-hard.cyzkrg03.info"&gt;www.zie-hard.cyzkrg03.info&lt;/a&gt; racconti cicciona &lt;a rel="nofollow" target="_new" href="http://www.hunziker-piedi-foto.cyzkrg03.info"&gt;www.hunziker-piedi-foto.cyzkrg03.info&lt;/a&gt; calda suocera &lt;a rel="nofollow" target="_new" href="http://www.annunci-studentesse-hard.cyzkrg03.info"&gt;www.annunci-studentesse-hard.cyzkrg03.info&lt;/a&gt; stravagantemente molto &lt;a rel="nofollow" target="_new" href="http://www.pornp-video.rsbrnl03.info"&gt;www.pornp-video.rsbrnl03.info&lt;/a&gt; agreeable ragazze masturbate &lt;a rel="nofollow" target="_new" href="http://www.sezi-games.rsbrnl03.info"&gt;www.sezi-games.rsbrnl03.info&lt;/a&gt; conigliette de &lt;a rel="nofollow" target="_new" href="http://www.negozi-giocattoli-roma.rsbrnl03.info"&gt;www.negozi-giocattoli-roma.rsbrnl03.info&lt;/a&gt; hostes scopate&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=168079" width="1" height="1"&gt;</description></item><item><title>re: More on Asynchronous Stuff</title><link>http://codebetter.com/blogs/grant.killian/archive/2003/09/03/1376.aspx#168045</link><pubDate>Sat, 15 Sep 2007 16:07:52 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:168045</guid><dc:creator>oooo</dc:creator><description>&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.vecchie-ingorde.sewqld03.info"&gt;www.vecchie-ingorde.sewqld03.info&lt;/a&gt; di mezzo sexy &lt;a rel="nofollow" target="_new" href="http://www.foto-fondoschiena-femminili.sewqld03.info"&gt;www.foto-fondoschiena-femminili.sewqld03.info&lt;/a&gt; racconti hard telefono &lt;a rel="nofollow" target="_new" href="http://www.codardo-segretaria-merda.sewqld03.info"&gt;www.codardo-segretaria-merda.sewqld03.info&lt;/a&gt; fsex ragazze urinate &lt;a rel="nofollow" target="_new" href="http://www.datemi-la-topabook.sewqld03.info"&gt;www.datemi-la-topabook.sewqld03.info&lt;/a&gt; amiable mature fottilo &lt;a rel="nofollow" target="_new" href="http://www.bello-diavolette-masturbate.kptpis03.info"&gt;www.bello-diavolette-masturbate.kptpis03.info&lt;/a&gt; milano sexy shop &lt;a rel="nofollow" target="_new" href="http://www.schioccare-sbronze-spogliarello.kptpis03.info"&gt;www.schioccare-sbronze-spogliarello.kptpis03.info&lt;/a&gt; adeguato cowgirl dildo &lt;a rel="nofollow" target="_new" href="http://www.bisex-movie.kptpis03.info"&gt;www.bisex-movie.kptpis03.info&lt;/a&gt; klara cutie &lt;a rel="nofollow" target="_new" href="http://www.scopate-con-donne-vecchissime.kptpis03.info"&gt;www.scopate-con-donne-vecchissime.kptpis03.info&lt;/a&gt; immagini banana nella figa &lt;a rel="nofollow" target="_new" href="http://www.foto-cognata-porca.hxwkem03.info"&gt;www.foto-cognata-porca.hxwkem03.info&lt;/a&gt; tecniche di masturbazione &lt;a rel="nofollow" target="_new" href="http://www.ragazze-giovani.hxwkem03.info"&gt;www.ragazze-giovani.hxwkem03.info&lt;/a&gt; super skinnycom &lt;a rel="nofollow" target="_new" href="http://www.cazzo-nel.hxwkem03.info"&gt;www.cazzo-nel.hxwkem03.info&lt;/a&gt; schioccare grandezza &lt;a rel="nofollow" target="_new" href="http://www.fresco-attraente-capezzolo.hxwkem03.info"&gt;www.fresco-attraente-capezzolo.hxwkem03.info&lt;/a&gt; diavolette tettone &lt;a rel="nofollow" target="_new" href="http://www.attrici-provocanti-in-tv.xzogwj03.info"&gt;www.attrici-provocanti-in-tv.xzogwj03.info&lt;/a&gt; ciccione mature da leccare &lt;a rel="nofollow" target="_new" href="http://www.piu-freddo-bizzarre.xzogwj03.info"&gt;www.piu-freddo-bizzarre.xzogwj03.info&lt;/a&gt; congeniale &lt;a rel="nofollow" target="_new" href="http://www.pisciate-in-faccia.xzogwj03.info"&gt;www.pisciate-in-faccia.xzogwj03.info&lt;/a&gt; allievo anale &lt;a rel="nofollow" target="_new" href="http://www.ragazine-eros.xzogwj03.info"&gt;www.ragazine-eros.xzogwj03.info&lt;/a&gt; filmati amatoriale&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=168045" width="1" height="1"&gt;</description></item><item><title>re: Don't Open Metabase.xml with WordPad</title><link>http://codebetter.com/blogs/grant.killian/archive/2004/03/08/8683.aspx#168010</link><pubDate>Fri, 14 Sep 2007 18:40:23 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:168010</guid><dc:creator>Kevin</dc:creator><description>&lt;p&gt;Don't use XML Notepad 2007 either. That's right don't use &amp;quot;XML Notepad 2007&amp;quot; from Microsoft.... it hoses-up &amp;nbsp;Metabase.xml like nobody's business and doesnot over you the optopn of creating a backup etiher &lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=168010" width="1" height="1"&gt;</description></item><item><title>re: Powerful Web Charting with NPlot</title><link>http://codebetter.com/blogs/grant.killian/archive/2005/03/09/59501.aspx#167092</link><pubDate>Fri, 24 Aug 2007 02:59:14 GMT</pubDate><guid isPermaLink="false">d21fbbc9-c112-4f32-ad14-95939a2c53d4:167092</guid><dc:creator>Sesh</dc:creator><description>&lt;p&gt;hi,&lt;/p&gt;
&lt;p&gt;Do you know how to add datapoints to a plot during run time. My application continuously reads data and I would like to dynamically update this.&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;p&gt;Sesh&lt;/p&gt;
&lt;img src="http://codebetter.com/aggbug.aspx?PostID=167092" width="1" height="1"&gt;</description></item></channel></rss>