<?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>Live with Dot Net</title>
	<atom:link href="http://www.livewithdotnet.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.livewithdotnet.com</link>
	<description>Just another Programming weblog</description>
	<lastBuildDate>Mon, 06 Feb 2012 21:54:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Below is a MySql trigger to insert/update other table</title>
		<link>http://www.livewithdotnet.com/below-is-a-mysql-trigger-to-insertupdate-other-table/</link>
		<comments>http://www.livewithdotnet.com/below-is-a-mysql-trigger-to-insertupdate-other-table/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 21:54:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DB Query]]></category>
		<category><![CDATA[Insert]]></category>
		<category><![CDATA[Insert/Update]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Other table]]></category>
		<category><![CDATA[trigger]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=42</guid>
		<description><![CDATA[Trigger in backend is very useful to report the input data in many different way.. This will be last step in performance tuning when the data double up drastically. DROP trigger IF EXISTS "Trigger Name"; delimiter $$ CREATE TRIGGER "Trigger Name" AFTER INSERT ON "Table Name - where the trigger will be fired on Insert/Update" [...]<p><a href="http://www.livewithdotnet.com/below-is-a-mysql-trigger-to-insertupdate-other-table/">Below is a MySql trigger to insert/update other table</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/below-is-a-mysql-trigger-to-insertupdate-other-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Write bunch of text to a file</title>
		<link>http://www.livewithdotnet.com/how-to-write-bunch-of-text-to-a-file/</link>
		<comments>http://www.livewithdotnet.com/how-to-write-bunch-of-text-to-a-file/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 13:35:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB .Net]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[VB.Net]]></category>
		<category><![CDATA[Write text]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=40</guid>
		<description><![CDATA[Here is one of the way to Write bunch of text to flat file: 1 2 3 4 5 6 7 8 9 10 11 12 Public Sub WriteFile&#40;ByVal sText As String, ByVal sFile As String, Optional ByVal bAppendMode As Boolean = True&#41; Try Dim Stream_Writer As New IO.StreamWriter&#40;sFile, bAppendMode&#41; Stream_Writer.Write&#40;sText &#38; vbCrLf&#41; Stream_Writer.Flush&#40;&#41; Stream_Writer.Close&#40;&#41; [...]<p><a href="http://www.livewithdotnet.com/how-to-write-bunch-of-text-to-a-file/">How to Write bunch of text to a file</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/how-to-write-bunch-of-text-to-a-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Check whether given file exists or not</title>
		<link>http://www.livewithdotnet.com/how-to-check-whether-given-file-exists-or-not/</link>
		<comments>http://www.livewithdotnet.com/how-to-check-whether-given-file-exists-or-not/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 23:21:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB .Net]]></category>
		<category><![CDATA[code to Check]]></category>
		<category><![CDATA[file exists or not]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[VB.Net]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=38</guid>
		<description><![CDATA[Here is the code to Check whether the given file exists or not in VB.Net: 1 2 3 Public Function IsFileExists&#40;ByVal strFileName As String&#41; As Boolean IsFileExists = System.IO.File.Exists&#40;strFileName&#41; End Function How to Check whether given file exists or not is a post from: Live with Dot Net<p><a href="http://www.livewithdotnet.com/how-to-check-whether-given-file-exists-or-not/">How to Check whether given file exists or not</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/how-to-check-whether-given-file-exists-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server &#8211; How to Configure Database mails</title>
		<link>http://www.livewithdotnet.com/sql-server-how-to-configure-database-mails/</link>
		<comments>http://www.livewithdotnet.com/sql-server-how-to-configure-database-mails/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 10:35:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DB Query]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=59</guid>
		<description><![CDATA[Below are the steps to configure the Database mailing feature in the SQL Server 2008 Database. The mail can be triggered through a Stored Procedure call. The mails are queued and deliverd using the SMTP Push mail servers. Steps: 1. In Sql Server database server, Go to Management --> Database Mail. 2. Right click the [...]<p><a href="http://www.livewithdotnet.com/sql-server-how-to-configure-database-mails/">SQL Server &#8211; How to Configure Database mails</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/sql-server-how-to-configure-database-mails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get System&#8217;s active printer name</title>
		<link>http://www.livewithdotnet.com/how-to-get-systems-active-printer-name/</link>
		<comments>http://www.livewithdotnet.com/how-to-get-systems-active-printer-name/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 02:07:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB .Net]]></category>
		<category><![CDATA[active printer name]]></category>
		<category><![CDATA[get Systems active printer name]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[printer]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=35</guid>
		<description><![CDATA[Here is the code to get the System's active printer name: 1 2 3 4 Private Function GetActivePrinter&#40;&#41; As String Dim ps As New Drawing.Printing.PrinterSettings&#40;&#41; Return ps.PrinterName End Function How to get System&#8217;s active printer name is a post from: Live with Dot Net<p><a href="http://www.livewithdotnet.com/how-to-get-systems-active-printer-name/">How to get System&#8217;s active printer name</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/how-to-get-systems-active-printer-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 888/995 objects using disk: basic

Served from: www.livewithdotnet.com @ 2012-02-06 17:01:51 -->
