<?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/">
	<channel>
		<title><![CDATA[4Coding Forum - All Forums]]></title>
		<link>http://4coding.com/frm/</link>
		<description><![CDATA[4Coding Forum - http://4coding.com/frm]]></description>
		<pubDate>Tue, 06 Jan 2009 03:19:54 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[C# for beginners help]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1984</link>
			<pubDate>Sun, 15 Jun 2008 14:23:37 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1984</guid>
			<description><![CDATA[So, I've reach the 3rd year of my course.  We have finished basic Java and C++.  Now, our new learning is C# but I don't have any idea what application to download to run a C# file or what compiler to use and what C# codes look like.  I need resources for C# learning and its basics. Please help.]]></description>
			<content:encoded><![CDATA[So, I've reach the 3rd year of my course.  We have finished basic Java and C++.  Now, our new learning is C# but I don't have any idea what application to download to run a C# file or what compiler to use and what C# codes look like.  I need resources for C# learning and its basics. Please help.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[New Life!!]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1977</link>
			<pubDate>Sun, 01 Jun 2008 10:58:59 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1977</guid>
			<description><![CDATA[I got the merge completed using the new script and am very pleased with the extra options it has allowed us. Improved spam control, cell phone browsing, moods, guestbooks & buddylists for each member, and a new Games section are just a few of the goodies our new and improved 4Coding Forum has to offer!!<br />
<br />
Enjoy!! :D<br />
<br />
<br />
~Admin~]]></description>
			<content:encoded><![CDATA[I got the merge completed using the new script and am very pleased with the extra options it has allowed us. Improved spam control, cell phone browsing, moods, guestbooks & buddylists for each member, and a new Games section are just a few of the goodies our new and improved 4Coding Forum has to offer!!<br />
<br />
Enjoy!! :D<br />
<br />
<br />
~Admin~]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Resize the Image]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1976</link>
			<pubDate>Mon, 19 May 2008 08:46:06 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1976</guid>
			<description><![CDATA[Hi frnd,<br />
<br />
I suffered a lot to display the thumbnail in my web page.<br />
<br />
There is so many example avail on net for but the issue with quality of image while resizing it.<br />
<br />
I have try my best to make it more clear………..<br />
<br />
But if u can use ur Bain then use it & make it more sharp while resizing the image I hv done this in C# <br />
<br />
save this code with aspx ext on ur web server pass the three parameter <br />
<br />
fn = file name<br />
w= widht of image<br />
h= height of image<br />
<br />
<br />
Code:<br />
&lt;%@Page Language="C#"%&gt;<br />
&lt;%@Import Namespace="System.Drawing" %&gt;<br />
&lt;%@Import Namespace="System.Drawing.Imaging" %&gt;<br />
&lt;%@Import Namespace="System.Drawing.Drawing2D" %&gt;<br />
&lt;%@Import Namespace="System.IO" %&gt;<br />
<br />
<br />
&amp;lt;script runat="server"&amp;gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;protected void Page_Load(object sender, EventArgs e)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string sFN; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int iH , iW;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sFN= RequestObject("fn");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int.TryParse ( RequestObject("h") , out iH );<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int.TryParse( RequestObject("w") , out iW);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GenerateThumbNail(sFN, iW, iH);<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;public string RequestObject(string sName)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string sRet = "";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try { sRet = Request[sName].ToString().Trim(); }<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch (Exception) { sRet = ""; }<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return sRet;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp; public void GenerateThumbNail<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string sOrgFileName ,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int iW ,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int iH <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; System.Drawing.Image oImg = null;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string sPhysicalPath;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sPhysicalPath = Server.MapPath("~"); <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Size ThumbNailSize = new Size(iW , iH );<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; oImg = System.Drawing.Image.FromFile(sPhysicalPath + @"&#92;" + sOrgFileName);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//System.Drawing.Image oThumbNail = new Bitmap( ThumbNailSize.Width, ThumbNailSize.Height, oImg.PixelFormat);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;System.Drawing.Image oThumbNail = new Bitmap( ThumbNailSize.Width, ThumbNailSize.Height);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Graphics oGraphic = Graphics.FromImage(oThumbNail);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; oGraphic.Clear(Color.White); <br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oGraphic.CompositingQuality = CompositingQuality.HighQuality;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oGraphic.SmoothingMode = SmoothingMode.HighQuality;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oGraphic.InterpolationMode = InterpolationMode.HighQualityBicubic;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Rectangle oRectangle = new Rectangle(0, 0,ThumbNailSize.Width, ThumbNailSize.Height);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oGraphic.DrawImage(oImg,0,0 ,ThumbNailSize.Width ,ThumbNailSize.Height);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EncoderParameters codecParams = new EncoderParameters(1);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;codecParams.Param[0] = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, 100L);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ImageCodecInfo[] encoders;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;encoders = ImageCodecInfo.GetImageEncoders();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.ContentType = "image/jpeg";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oThumbNail.Save(Response.OutputStream,encoders[1],codecParams); <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oImg.Dispose();<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch (Exception ex) <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Response.Write(ex.Message);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oImg.Dispose();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
<br />
&amp;lt;/script&amp;gt;<br />
<br />
[/code]]]></description>
			<content:encoded><![CDATA[Hi frnd,<br />
<br />
I suffered a lot to display the thumbnail in my web page.<br />
<br />
There is so many example avail on net for but the issue with quality of image while resizing it.<br />
<br />
I have try my best to make it more clear………..<br />
<br />
But if u can use ur Bain then use it & make it more sharp while resizing the image I hv done this in C# <br />
<br />
save this code with aspx ext on ur web server pass the three parameter <br />
<br />
fn = file name<br />
w= widht of image<br />
h= height of image<br />
<br />
<br />
Code:<br />
&lt;%@Page Language="C#"%&gt;<br />
&lt;%@Import Namespace="System.Drawing" %&gt;<br />
&lt;%@Import Namespace="System.Drawing.Imaging" %&gt;<br />
&lt;%@Import Namespace="System.Drawing.Drawing2D" %&gt;<br />
&lt;%@Import Namespace="System.IO" %&gt;<br />
<br />
<br />
&amp;lt;script runat="server"&amp;gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;protected void Page_Load(object sender, EventArgs e)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string sFN; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int iH , iW;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sFN= RequestObject("fn");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int.TryParse ( RequestObject("h") , out iH );<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int.TryParse( RequestObject("w") , out iW);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GenerateThumbNail(sFN, iW, iH);<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;public string RequestObject(string sName)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string sRet = "";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try { sRet = Request[sName].ToString().Trim(); }<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch (Exception) { sRet = ""; }<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return sRet;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp; public void GenerateThumbNail<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string sOrgFileName ,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int iW ,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int iH <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;)<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; System.Drawing.Image oImg = null;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;string sPhysicalPath;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sPhysicalPath = Server.MapPath("~"); <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Size ThumbNailSize = new Size(iW , iH );<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; oImg = System.Drawing.Image.FromFile(sPhysicalPath + @"&#92;" + sOrgFileName);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//System.Drawing.Image oThumbNail = new Bitmap( ThumbNailSize.Width, ThumbNailSize.Height, oImg.PixelFormat);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;System.Drawing.Image oThumbNail = new Bitmap( ThumbNailSize.Width, ThumbNailSize.Height);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Graphics oGraphic = Graphics.FromImage(oThumbNail);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; oGraphic.Clear(Color.White); <br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oGraphic.CompositingQuality = CompositingQuality.HighQuality;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oGraphic.SmoothingMode = SmoothingMode.HighQuality;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oGraphic.InterpolationMode = InterpolationMode.HighQualityBicubic;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Rectangle oRectangle = new Rectangle(0, 0,ThumbNailSize.Width, ThumbNailSize.Height);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oGraphic.DrawImage(oImg,0,0 ,ThumbNailSize.Width ,ThumbNailSize.Height);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EncoderParameters codecParams = new EncoderParameters(1);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;codecParams.Param[0] = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, 100L);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ImageCodecInfo[] encoders;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;encoders = ImageCodecInfo.GetImageEncoders();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.ContentType = "image/jpeg";<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oThumbNail.Save(Response.OutputStream,encoders[1],codecParams); <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oImg.Dispose();<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;catch (Exception ex) <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Response.Write(ex.Message);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;oImg.Dispose();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
<br />
&amp;lt;/script&amp;gt;<br />
<br />
[/code]]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Who is She ??]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1975</link>
			<pubDate>Thu, 24 Apr 2008 05:13:40 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1975</guid>
			<description><![CDATA[Who is She<br />
<br />
<br />
<br />
She is......<br />
Bill Gates' daughter<br />
<br />
Pass Hours<br />
--------------------------------------------------------------------------------<br />
I desire nothing more than to be in your heart until forever dies]]></description>
			<content:encoded><![CDATA[Who is She<br />
<br />
<br />
<br />
She is......<br />
Bill Gates' daughter<br />
<br />
Pass Hours<br />
--------------------------------------------------------------------------------<br />
I desire nothing more than to be in your heart until forever dies]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How is it that I may become a Writer of Programs?]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1970</link>
			<pubDate>Wed, 27 Feb 2008 05:48:55 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1970</guid>
			<description><![CDATA[NOVICE AND THE MASTER <br />
<br />
<br />
Code:<br />
One day a Novice came to the Master.<br />
"Master," he said, "How is it that I may become a Writer of Programs?".<br />
The Master looked solemnly at the Novice.<br />
"Have you in your possession a Compiler of Source Code?" the Master asked.<br />
"No," replied the Novice. The Master sent the Novice on a quest to the Store of Software.<br />
<br />
Many hours later the Novice returned.<br />
"Master," he said, "How is it that I may become a Writer of Programs?".<br />
The Master looked solemnly at the Novice.<br />
"Have you in your possession a Compiler of Source Code?" the Master asked.<br />
"Yes," replied the Novice.<br />
The Master frowned at the Novice.<br />
"You have a Compiler of Source. What now can prevent you from becoming a Writer of Programs?".<br />
The Novice fidgeted nervously and presented his Compiler of Source to the Master.<br />
"How is this used?" asked the Novice.<br />
"Have you in your possession a Manual of Operation?" the Master asked.<br />
"No," replied the Novice.<br />
The Master instructed the Novice as to where he could find the Manual of Operation.<br />
<br />
Many days later the Novice returned.<br />
"Master," he said, "How is it that I may become a Writer of Programs?".<br />
The Master looked solemnly at the Novice.<br />
"Have you in your possession a Compiler of Source Code?" the Master asked.<br />
"Yes," replied the Novice.<br />
"Have you in your possession a Manual of Operation?" the Master asked.<br />
"Yes," replied the Novice.<br />
The Master frowned at the Novice.<br />
"You have a Compiler of Source, and a Manual of Operation. What now can prevent you from becoming a Writer of Programs?".<br />
<br />
At this the Novice fidgeted nervously and presented his Manual of Operations to the Master.<br />
"How is this used?" asked the Novice.<br />
The Master closed his eyes, and heaved a great sigh.<br />
The Master sent the Novice on a quest to the School of Elementary.<br />
<br />
Many years later the Novice returned.<br />
"Master," he said, "How is it that I may become a Writer of Programs?".<br />
The Master looked solemnly at the Novice.<br />
"Have you in your possession a Compiler of Source Code, a Manual of Operation and an Education of Elementary?" the Master asked.<br />
"Yes," replied the Novice.<br />
The Master frowned at the Novice.<br />
"What then can prevent you from becoming a Writer of Programs?".<br />
<br />
The Novice fidgeted nervously. He looked around but could find nothing to present to the Master.<br />
The Master smiled at the Novice.<br />
"I see what problem plagues you." said the Master.<br />
"Oh great master, please tell me." asked the Novice.<br />
<br />
The Master turned the Novice toward the door, and with a supportive hand on his shoulder said, "Go young Novice, and Read The Fucking Manual." And so the Novice became enlightened.<br />
<br />
]]></description>
			<content:encoded><![CDATA[NOVICE AND THE MASTER <br />
<br />
<br />
Code:<br />
One day a Novice came to the Master.<br />
"Master," he said, "How is it that I may become a Writer of Programs?".<br />
The Master looked solemnly at the Novice.<br />
"Have you in your possession a Compiler of Source Code?" the Master asked.<br />
"No," replied the Novice. The Master sent the Novice on a quest to the Store of Software.<br />
<br />
Many hours later the Novice returned.<br />
"Master," he said, "How is it that I may become a Writer of Programs?".<br />
The Master looked solemnly at the Novice.<br />
"Have you in your possession a Compiler of Source Code?" the Master asked.<br />
"Yes," replied the Novice.<br />
The Master frowned at the Novice.<br />
"You have a Compiler of Source. What now can prevent you from becoming a Writer of Programs?".<br />
The Novice fidgeted nervously and presented his Compiler of Source to the Master.<br />
"How is this used?" asked the Novice.<br />
"Have you in your possession a Manual of Operation?" the Master asked.<br />
"No," replied the Novice.<br />
The Master instructed the Novice as to where he could find the Manual of Operation.<br />
<br />
Many days later the Novice returned.<br />
"Master," he said, "How is it that I may become a Writer of Programs?".<br />
The Master looked solemnly at the Novice.<br />
"Have you in your possession a Compiler of Source Code?" the Master asked.<br />
"Yes," replied the Novice.<br />
"Have you in your possession a Manual of Operation?" the Master asked.<br />
"Yes," replied the Novice.<br />
The Master frowned at the Novice.<br />
"You have a Compiler of Source, and a Manual of Operation. What now can prevent you from becoming a Writer of Programs?".<br />
<br />
At this the Novice fidgeted nervously and presented his Manual of Operations to the Master.<br />
"How is this used?" asked the Novice.<br />
The Master closed his eyes, and heaved a great sigh.<br />
The Master sent the Novice on a quest to the School of Elementary.<br />
<br />
Many years later the Novice returned.<br />
"Master," he said, "How is it that I may become a Writer of Programs?".<br />
The Master looked solemnly at the Novice.<br />
"Have you in your possession a Compiler of Source Code, a Manual of Operation and an Education of Elementary?" the Master asked.<br />
"Yes," replied the Novice.<br />
The Master frowned at the Novice.<br />
"What then can prevent you from becoming a Writer of Programs?".<br />
<br />
The Novice fidgeted nervously. He looked around but could find nothing to present to the Master.<br />
The Master smiled at the Novice.<br />
"I see what problem plagues you." said the Master.<br />
"Oh great master, please tell me." asked the Novice.<br />
<br />
The Master turned the Novice toward the door, and with a supportive hand on his shoulder said, "Go young Novice, and Read The Fucking Manual." And so the Novice became enlightened.<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Block CTRL+ALT+DEL]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1972</link>
			<pubDate>Wed, 20 Feb 2008 14:34:56 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1972</guid>
			<description><![CDATA[frnd,<br />
<br />
i want to block the CTRL+ALT+DEL in VB 6 <br />
please help me with this.<br />
<br />
Thnx in Advance]]></description>
			<content:encoded><![CDATA[frnd,<br />
<br />
i want to block the CTRL+ALT+DEL in VB 6 <br />
please help me with this.<br />
<br />
Thnx in Advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Amazing.... Sylvestor catches Tweety]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1973</link>
			<pubDate>Thu, 24 Jan 2008 04:59:42 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1973</guid>
			<description><![CDATA[Watch this until Sylvestor catches Tweety... (wait for it. It's worth it, then scroll down...)<br />
<br />
<br />
<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
This was an idiot test. How long did you watch?<br />
<br />
0-2 seconds - there's hope for you<br />
2-5 seconds - having a bad day?<br />
5-10 seconds - are you maybe just a slow reader?<br />
10-20 seconds - remedial classes are nothing to be ashamed of<br />
20-30 seconds - it is recommended that you don't breed.<br />
30 sec-1 min - you probably can't read this anyway. So why bother?<br />
1-2 min - the equivalent of the average house plant<br />
2-5 min - Good afternoon Mr Bush<br />
5 min-1 hr - Dead people score in this range<br />
1hr plus - congratulations. You have a negative IQ. To find out what your prize is, watch bugs until he finishes his carrot…<br />
<br />
<br />
<br />
<br />
:lol:  :lol:  :lol: <br />
<br />
Pass Hours<br />
--------------------------------------------------------------------------------<br />
I desire nothing more than to be in your heart until forever dies]]></description>
			<content:encoded><![CDATA[Watch this until Sylvestor catches Tweety... (wait for it. It's worth it, then scroll down...)<br />
<br />
<br />
<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
This was an idiot test. How long did you watch?<br />
<br />
0-2 seconds - there's hope for you<br />
2-5 seconds - having a bad day?<br />
5-10 seconds - are you maybe just a slow reader?<br />
10-20 seconds - remedial classes are nothing to be ashamed of<br />
20-30 seconds - it is recommended that you don't breed.<br />
30 sec-1 min - you probably can't read this anyway. So why bother?<br />
1-2 min - the equivalent of the average house plant<br />
2-5 min - Good afternoon Mr Bush<br />
5 min-1 hr - Dead people score in this range<br />
1hr plus - congratulations. You have a negative IQ. To find out what your prize is, watch bugs until he finishes his carrot…<br />
<br />
<br />
<br />
<br />
:lol:  :lol:  :lol: <br />
<br />
Pass Hours<br />
--------------------------------------------------------------------------------<br />
I desire nothing more than to be in your heart until forever dies]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Merry Christmas... :-)]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1971</link>
			<pubDate>Tue, 18 Dec 2007 04:44:08 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1971</guid>
			<description><![CDATA[my favourite P3 & 4coding dudes!!!<br />
<br />
i wish you all a Merry Christmas and a Happy New Year!!!<br />
<br />
I'm sure that you will keep on doing the fun n good that you have been doing so far!!!<br />
<br />
<br />
:-)<br />
<br />
have a nice time dudes!!!]]></description>
			<content:encoded><![CDATA[my favourite P3 & 4coding dudes!!!<br />
<br />
i wish you all a Merry Christmas and a Happy New Year!!!<br />
<br />
I'm sure that you will keep on doing the fun n good that you have been doing so far!!!<br />
<br />
<br />
:-)<br />
<br />
have a nice time dudes!!!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Scanning the Document &amp;amp; save it in pdf format]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1964</link>
			<pubDate>Mon, 17 Dec 2007 09:12:39 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1964</guid>
			<description><![CDATA[Hi, <br />
<br />
 i need to knw how to scan the documents in C# /.Net & save it with pdf format please help me with this ................<br />
 <br />
thanks in advance.<br />
<br />
Regards<br />
Sonal]]></description>
			<content:encoded><![CDATA[Hi, <br />
<br />
 i need to knw how to scan the documents in C# /.Net & save it with pdf format please help me with this ................<br />
 <br />
thanks in advance.<br />
<br />
Regards<br />
Sonal]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How To Scan The Documents in C#]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1965</link>
			<pubDate>Mon, 17 Dec 2007 08:55:20 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1965</guid>
			<description><![CDATA[Hi Frnds,<br />
<br />
  i need to scan the documents from scanner & save it in pdf file. please help me with this.<br />
<br />
Thanks in advance.]]></description>
			<content:encoded><![CDATA[Hi Frnds,<br />
<br />
  i need to scan the documents from scanner & save it in pdf file. please help me with this.<br />
<br />
Thanks in advance.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[need ebooks]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1963</link>
			<pubDate>Fri, 14 Dec 2007 08:42:23 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1963</guid>
			<description><![CDATA[need some ebooks on Datawarehousing , Business objects Crystal report XI, Actuate]]></description>
			<content:encoded><![CDATA[need some ebooks on Datawarehousing , Business objects Crystal report XI, Actuate]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[seperate section for datawarehouse &amp;amp; Reporting tools]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1958</link>
			<pubDate>Fri, 14 Dec 2007 07:43:16 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1958</guid>
			<description><![CDATA[i think there shd b seperate section for datawarehouse , data mining, reporting tool.....<br />
<br />
i found crystal report ebooks n datamining ebooks kept in Databases...where as its all different....database shd contain like sql, oracle stuff other stuff shd categorized in datawarehouse or reporting tools section.]]></description>
			<content:encoded><![CDATA[i think there shd b seperate section for datawarehouse , data mining, reporting tool.....<br />
<br />
i found crystal report ebooks n datamining ebooks kept in Databases...where as its all different....database shd contain like sql, oracle stuff other stuff shd categorized in datawarehouse or reporting tools section.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[some ebooks etc. needed]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1960</link>
			<pubDate>Tue, 04 Dec 2007 08:45:10 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1960</guid>
			<description><![CDATA[<br />
Code:<br />
help me in getting these ebooks<br />
1.Sun - Struts + j2ee patterns.zip&nbsp;&nbsp;<br />
2.weboi - Student Guide struts.pdf&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
3.O'Reilly - Programming Jakarta Struts - Code Examples.zip (latest needed) <br />
4.O'Reilly - Programming Jakarta Struts (latest needed)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
5.O'Reilly -Java Security, any Edition.pdf(latest needed)&nbsp;&nbsp;<br />
6. a good ebook on "Java RMI"<br />
7. Java Extreme Programming<br />
8. Hardcore Java<br />
9. awesome author Manning - Struts In Action<br />
10. Programming Jakarta Struts - Code Examples.zip<br />
<br />
Thanks and Regards,<br />
(well too much demanded:lol: :lol: )<br />
<br />
HAVE A NICE DAY!!<br />
NICEGUY]]></description>
			<content:encoded><![CDATA[<br />
Code:<br />
help me in getting these ebooks<br />
1.Sun - Struts + j2ee patterns.zip&nbsp;&nbsp;<br />
2.weboi - Student Guide struts.pdf&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
3.O'Reilly - Programming Jakarta Struts - Code Examples.zip (latest needed) <br />
4.O'Reilly - Programming Jakarta Struts (latest needed)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
5.O'Reilly -Java Security, any Edition.pdf(latest needed)&nbsp;&nbsp;<br />
6. a good ebook on "Java RMI"<br />
7. Java Extreme Programming<br />
8. Hardcore Java<br />
9. awesome author Manning - Struts In Action<br />
10. Programming Jakarta Struts - Code Examples.zip<br />
<br />
Thanks and Regards,<br />
(well too much demanded:lol: :lol: )<br />
<br />
HAVE A NICE DAY!!<br />
NICEGUY]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ADRESS BOOK importing]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1957</link>
			<pubDate>Tue, 27 Nov 2007 13:24:33 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1957</guid>
			<description><![CDATA[hi to all  <br />
<br />
i want to import the adress book from gmail account in java <br />
<br />
can u gimme idea<br />
<br />
thanx in advance]]></description>
			<content:encoded><![CDATA[hi to all  <br />
<br />
i want to import the adress book from gmail account in java <br />
<br />
can u gimme idea<br />
<br />
thanx in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Monday's]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1954</link>
			<pubDate>Fri, 23 Nov 2007 04:42:07 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1954</guid>
			<description><![CDATA[MONDAY<br />
<br />
Monday must be the most horrible of days.<br />
The reasons it's horrible are too horrible to say.<br />
But with that said, I'll try to explain<br />
Why Monday must bring us oh so much pain.<br />
<br />
You see on Monday, you work with a frown.<br />
The full work week ahead has gotten you down.<br />
The weekend has come, and the weekend has passed,<br />
And like all weekends it just didn't last.<br />
<br />
But Monday sure lasts, it lasts so long.<br />
You keep checking your watch to see what's wrong.<br />
But against your wishes your watch is just fine.<br />
Against your wishes you can't speed up time.<br />
<br />
So you sit and you wait and you pretend to work.<br />
You dream of a boss that isn't a jerk.<br />
But then you wake up and you almost cry.<br />
You wish and you wish that the day would just die.<br />
<br />
But wait, please listen, don't worry my friend.<br />
For one thing is certain, all Mondays must end.<br />
Now that it's been said, I'll say it again.<br />
More Mondays will come and more Mondays will end.<br />
<br />
:lol:  :lol:  :lol: <br />
<br />
Pass Hours<br />
--------------------------------------------------------------------------------<br />
I desire nothing more than to be in your heart until forever dies]]></description>
			<content:encoded><![CDATA[MONDAY<br />
<br />
Monday must be the most horrible of days.<br />
The reasons it's horrible are too horrible to say.<br />
But with that said, I'll try to explain<br />
Why Monday must bring us oh so much pain.<br />
<br />
You see on Monday, you work with a frown.<br />
The full work week ahead has gotten you down.<br />
The weekend has come, and the weekend has passed,<br />
And like all weekends it just didn't last.<br />
<br />
But Monday sure lasts, it lasts so long.<br />
You keep checking your watch to see what's wrong.<br />
But against your wishes your watch is just fine.<br />
Against your wishes you can't speed up time.<br />
<br />
So you sit and you wait and you pretend to work.<br />
You dream of a boss that isn't a jerk.<br />
But then you wake up and you almost cry.<br />
You wish and you wish that the day would just die.<br />
<br />
But wait, please listen, don't worry my friend.<br />
For one thing is certain, all Mondays must end.<br />
Now that it's been said, I'll say it again.<br />
More Mondays will come and more Mondays will end.<br />
<br />
:lol:  :lol:  :lol: <br />
<br />
Pass Hours<br />
--------------------------------------------------------------------------------<br />
I desire nothing more than to be in your heart until forever dies]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[mastering turbo debugger]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1955</link>
			<pubDate>Wed, 21 Nov 2007 03:34:40 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1955</guid>
			<description><![CDATA[<br />
Code:<br />
http://www.eazyupload.net/download/RUI5wCSu/0672305267.zip.htm<br />
<br />
]]></description>
			<content:encoded><![CDATA[<br />
Code:<br />
http://www.eazyupload.net/download/RUI5wCSu/0672305267.zip.htm<br />
<br />
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Algorithms - Optimized Time table generator algorithm]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1953</link>
			<pubDate>Wed, 14 Nov 2007 09:56:55 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1953</guid>
			<description><![CDATA[friends.........<br />
<br />
  i need some algorithm Or Code to generate Time Table for shcool.....<br />
<br />
please help me with this...............]]></description>
			<content:encoded><![CDATA[friends.........<br />
<br />
  i need some algorithm Or Code to generate Time Table for shcool.....<br />
<br />
please help me with this...............]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[project help]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1949</link>
			<pubDate>Tue, 06 Nov 2007 15:52:26 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1949</guid>
			<description><![CDATA[hi to all.i need to do a project using sql and c++ , ie , i have to use ODBC . the problem is as always of the time . i do not exactly know how to get started . i am willing to use visual studio c++ and microsoft sql server but do not know a thing about odbc.can anyone help me out with this or maybe send me some code ( or project ) ? how do i actually get started with odbc ? <br />
willing to learn . vaibhav .]]></description>
			<content:encoded><![CDATA[hi to all.i need to do a project using sql and c++ , ie , i have to use ODBC . the problem is as always of the time . i do not exactly know how to get started . i am willing to use visual studio c++ and microsoft sql server but do not know a thing about odbc.can anyone help me out with this or maybe send me some code ( or project ) ? how do i actually get started with odbc ? <br />
willing to learn . vaibhav .]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[project help]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1945</link>
			<pubDate>Tue, 06 Nov 2007 15:47:34 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1945</guid>
			<description><![CDATA[hi to all.i need to do a project using sql and c++ , ie , i have to use ODBC . the problem is as always of the time . i do not exactly know how to get started . i am willing to use visual studio c++ and microsoft sql server but do not know a thing about odbc.can anyone help me out with this or maybe send me some code ( or project ) ? how do i actually get started with odbc ? <br />
willing to learn . vaibhav .]]></description>
			<content:encoded><![CDATA[hi to all.i need to do a project using sql and c++ , ie , i have to use ODBC . the problem is as always of the time . i do not exactly know how to get started . i am willing to use visual studio c++ and microsoft sql server but do not know a thing about odbc.can anyone help me out with this or maybe send me some code ( or project ) ? how do i actually get started with odbc ? <br />
willing to learn . vaibhav .]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[project help]]></title>
			<link>http://4coding.com/frm/showthread.php?tid=1948</link>
			<pubDate>Tue, 06 Nov 2007 15:40:26 +0000</pubDate>
			<guid isPermaLink="false">http://4coding.com/frm/showthread.php?tid=1948</guid>
			<description><![CDATA[hi to all.i need to do a project using sql and c++ , ie , i have to use ODBC . the problem is as always of the time . i do not exactly know how to get started . i am willing to use visual studio c++ and microsoft sql server but do not know a thing about odbc.can anyone help me out with this or maybe send me some code ( or project ) ? how do i actually get started with odbc ? <br />
willing to learn . vaibhav .]]></description>
			<content:encoded><![CDATA[hi to all.i need to do a project using sql and c++ , ie , i have to use ODBC . the problem is as always of the time . i do not exactly know how to get started . i am willing to use visual studio c++ and microsoft sql server but do not know a thing about odbc.can anyone help me out with this or maybe send me some code ( or project ) ? how do i actually get started with odbc ? <br />
willing to learn . vaibhav .]]></content:encoded>
		</item>
	</channel>
</rss>