<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/atomfull.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><feed xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="0.3" xml:lang="en">
	<title>Fullycoded.com</title>
	<link rel="alternate" type="text/html" href="http://fullycoded.com" />
	<tagline>Best website scripts, Source code in Visual basic, php, cgi , javascript and asp...</tagline>
	<modified>2008-06-03T09:26:15Z</modified>
	<copyright>Copyright 2008</copyright>
	<generator url="http://wordpress.org/" version="1.5.1.3">WordPress</generator>
	
		<link rel="start" href="http://feeds.feedburner.com/JvwFullycoded" type="application/atom+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Static in C#]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/304447247/" />
		<id>http://fullycoded.com/?p=230</id>
		<modified>2008-06-03T09:26:15Z</modified>
		<issued>2008-06-03T09:26:15Z</issued>
		
	<dc:subject>C#</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Static in c#
===
class zzz
{
	static void Main()
{
yyy a=new yyy();
a.abc();
yyy.pqr();
}
}
class yyy
{
public void abc()
{
System.Console.WriteLine(&#8221;C# at abc&#8221;);
}
public static void pqr()
{
System.Console.WriteLine(&#8221;C# at pqr&#8221;);
}
}
	PS : VB Developers have the biggest problem understanding static when migrating from programming language Visual basic to a C#.

]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=230"><![CDATA[	<p><b>Static in c#</b><br />
===<br />
class zzz<br />
{<br />
	static void Main()<br />
{<br />
yyy a=new yyy();<br />
a.abc();<br />
yyy.pqr();<br />
}<br />
}<br />
class yyy<br />
{<br />
public void abc()<br />
{<br />
System.Console.WriteLine(&#8221;C# at abc&#8221;);<br />
}<br />
public static void pqr()<br />
{<br />
System.Console.WriteLine(&#8221;C# at pqr&#8221;);<br />
}<br />
}</p>
	<p>PS : VB Developers have the biggest problem understanding <i>static</i> when migrating from programming language Visual basic to a C#.
</p>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=230</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Basics of C#]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/290408216/" />
		<id>http://fullycoded.com/?p=229</id>
		<modified>2008-05-14T11:38:31Z</modified>
		<issued>2008-05-14T11:38:31Z</issued>
		
	<dc:subject>C#</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	WriteLine.cs and Return.cs :
	1. WriteLine.cs
===
// created on 3/1/2002 at 12:36 AM
class callingfunction
{
	static void Main(){
			System.Console.WriteLine(&#8221;Hundred ={0}&#8221;,100);
		}
}
===
	2. Return.cs
===
class zzz
{
static void Main()
{
int ii = abc();
System.Console.WriteLine(&#8221;hi {0}&#8221;,ii);
}
static int abc()
{
System.Console.WriteLine(&#8221;abc&#8221;);
return 100;
	// after return everything ignored
System.Console.WriteLine(&#8221;abc&#8221;);
}
}
===

]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=229"><![CDATA[	<p><u>WriteLine.cs and Return.cs</u> :</p>
	<p>1. <b>WriteLine.cs</b><br />
===<br />
// created on 3/1/2002 at 12:36 AM<br />
class callingfunction<br />
{<br />
	static void Main(){</p>
	<p>		System.Console.WriteLine(&#8221;Hundred ={0}&#8221;,100);</p>
	<p>	}<br />
}<br />
===</p>
	<p>2. <b>Return.cs</b><br />
===<br />
class zzz<br />
{<br />
static void Main()<br />
{<br />
int ii = abc();<br />
System.Console.WriteLine(&#8221;hi {0}&#8221;,ii);<br />
}<br />
static int abc()<br />
{<br />
System.Console.WriteLine(&#8221;abc&#8221;);<br />
return 100;<br />
	// after return everything ignored<br />
System.Console.WriteLine(&#8221;abc&#8221;);<br />
}<br />
}<br />
===
</p>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=229</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Reflection in c#]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/283171142/" />
		<id>http://fullycoded.com/?p=228</id>
		<modified>2008-04-29T12:00:36Z</modified>
		<issued>2008-04-29T12:00:36Z</issued>
		
	<dc:subject>C#</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Reflection is a process by which an application can read and collect data from assemby and metadata.
	Reflection.cs
===
using System;
using System.Reflection;
class zzz
{
public static void Main()
{
Type m;
m = typeof(int);
System.Console.WriteLine(m.Name + &#8221; &#8221; + m.FullName);
m = typeof(System.Int32);
System.Console.WriteLine(m.Name + &#8221; &#8221; + m.FullName);
m = typeof(yyy);
System.Console.WriteLine(m.Name + &#8221; &#8221; + m.FullName);
m=typeof(string);
MemberInfo [] n;
n = m.GetMembers();
Console.WriteLine(n.Length);
foreach ( MemberInfo a in n)
{
Console.Write(a.Name+&#8221;,&#8221;);
}
System.Console.WriteLine(m.Name + [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=228"><![CDATA[	<p><b>Reflection</b> is a process by which an application can read and collect data from assemby and metadata.</p>
	<p><u>Reflection.cs</u><br />
===<br />
using System;<br />
using System.Reflection;<br />
class zzz<br />
{<br />
public static void Main()<br />
{<br />
Type m;<br />
m = typeof(int);<br />
System.Console.WriteLine(m.Name + &#8221; &#8221; + m.FullName);<br />
m = typeof(System.Int32);<br />
System.Console.WriteLine(m.Name + &#8221; &#8221; + m.FullName);<br />
m = typeof(yyy);<br />
System.Console.WriteLine(m.Name + &#8221; &#8221; + m.FullName);<br />
m=typeof(string);<br />
MemberInfo [] n;<br />
n = m.GetMembers();<br />
Console.WriteLine(n.Length);<br />
foreach ( MemberInfo a in n)<br />
{<br />
Console.Write(a.Name+&#8221;,&#8221;);<br />
}<br />
System.Console.WriteLine(m.Name + &#8221; &#8221; + m.FullName);<br />
}<br />
}<br />
class yyy<br />
{<br />
}<br />
===
</p>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=228</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Read from Web using C#]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/275865684/" />
		<id>http://fullycoded.com/?p=227</id>
		<modified>2008-04-22T11:43:03Z</modified>
		<issued>2008-04-22T11:43:03Z</issued>
		
	<dc:subject>C#</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Here again we will use System.Net and the classes we shall use in the c# code from the .NET framework are WebRequest and WebResponse. WebRequest and WebResponse classes from the .NET Library are used to to request web-pages from the internet. 
	Readnet.cs
===
using System;
using System.Net;
using System.IO;
class zzz
{
public static void Main()
{
WebRequest r = WebRequest.Create(&#8221;http://www.jimmysvalueworld.com&#8221;);
WebResponse re = r.GetResponse();
Stream [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=227"><![CDATA[	<p>Here again we will use System.Net and the classes we shall use in the <a href="http://fullycoded.com/index.php?cat=3">c# code</a> from the .NET framework are WebRequest and WebResponse. WebRequest and WebResponse classes from the .NET Library are used to to request web-pages from the internet. </p>
	<p>Readnet.cs<br />
===<br />
using System;<br />
using System.Net;<br />
using System.IO;<br />
class zzz<br />
{<br />
public static void Main()<br />
{<br />
WebRequest r = WebRequest.Create(&#8221;http://www.jimmysvalueworld.com&#8221;);<br />
WebResponse re = r.GetResponse();<br />
Stream s = re.GetResponseStream();<br />
Byte[] a = new Byte[51200];<br />
int b = s.Read(a, 0, 51200);<br />
Console.WriteLine(b);<br />
Console.Write(System.Text.Encoding.ASCII.GetString(a, 0, b));<br />
}<br />
}<br />
===
</p>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=227</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Sales Intimidator]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/265183017/" />
		<id>http://fullycoded.com/?p=226</id>
		<modified>2008-03-31T13:45:15Z</modified>
		<issued>2008-03-31T13:45:15Z</issued>
		
	<dc:subject>Website scripts</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	&#8220;Use This Incredible New Script To Actually Force Your Website Visitors To Purchase Your Products, Spend More Cash,  And Keep Coming Back For More and More&#8230;&#8221;
	-> Smart Internet E-Marketers All Over the WWW have Already Discovered How Sales Intimidator Sends More Visitors Scrambling For Their Credit Cards As Fast And As OFTEN As They [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=226"><![CDATA[	<p><i><b><font size="4">&#8220;Use This Incredible New Script To Actually Force Your Website Visitors To Purchase Your Products, Spend More Cash,  And Keep Coming Back For More and More&#8230;&#8221;</font></b></i></p>
	<p>-> Smart Internet E-Marketers All Over the WWW have Already Discovered How <u>Sales Intimidator</u> Sends More Visitors Scrambling For Their Credit Cards As Fast And As OFTEN As They Possibly Can&#8230;</p>
	<p><i>Let&#8217;s get to the point&#8230;.</i></p>
	<p>To make more money from your web-site, you gotto increase the traffic plus increase conversions on the traffic you are already getting. You need your sales promo page to sell more copies plus you need your visitors to spend more money.</p>
	<p><u>What it does</u> :</p>
	<p>1. First Hit : Only XX copies remain - Showing your website visitor the number of copies remaining does two things for you&#8230; First of all the falling number Creates a sense of urgency for your prospect, and as the lower it goes, the more it works in your favour.</p>
	<p> 2. Strike two : The SECOND BLOW is that the user cannot leave the page, come back later and still get your reduced price!<br />
When the user refreshes the sales page, or leaves and comes back later, they will automatically be redirected to your <i>&#8220;page 2 offer&#8221;</i>. This page will have another offer for your visitor, only at a higher price.</p>
	<p>Another reat advantage is it provides what is known as &#8220;social proof&#8221; that other people are buying this product too - &#8220;so it must be great!&#8221; We humans are instinctive creatures, and when we see others doing something, we have more confidence in our decision to do it too.</p>
	<p>3. Knockout : Time based - Order in The Next XX Minutes and get &#8230;.</p>
	<p>This is no ploy. Now when you give your visitors a countdown, YOU REALLY MEAN IT!</p>
	<p><u>With Sales Intimidator you get</u> :</p>
	<li> Your Own Copy of Sales Intimidator!
</li>
	<li> Unlimited Domain Licence!
 </li>
	<li> Full UNRESTRICTED Private Label Rights to Sales Intimidator, to use ANY way you wish!
 </li>
	<li> Copy of This Salespage!
 </li>
	<li> Graphics and .PSD Files for Easy Editing!
 </li>
	<li> Unencrypted Sourcecode and Full Sourcecode Rights to Add, Subtract, or Edit ANY Way You Want!
	<p><a href="https://usd.swreg.org/cgi-bin/s.cgi?s=43012&#038;p=43012fc&#038;v=0&#038;d=0&#038;q=1"><font color="green" size="5">Get the incredible Sales Intimidator Php script for $9.95 ONLY</font></a></li>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=226</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Popular web scripts]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/232941431/" />
		<id>http://fullycoded.com/?p=225</id>
		<modified>2008-02-10T08:54:52Z</modified>
		<issued>2008-02-10T08:54:52Z</issued>
		
	<dc:subject>Website scripts</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Run your own Youtube site or popular social bookmarking site like Myspace and make money through advertising or adsense.
	Nowadays Web 2.0 sites are the most popular ones and have the most number of visitors. Some of them include Youtube, Social sites like Myspace and Orkut.com
	You can now run such sites easily with Website clones script [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=225"><![CDATA[	<p>Run your own <a href="http://www.youtube.com">Youtube</a> site or popular social bookmarking site like Myspace and make money through advertising or adsense.</p>
	<p>Nowadays Web 2.0 sites are the most popular ones and have the most number of visitors. Some of them include Youtube, Social sites like Myspace and Orkut.com</p>
	<p>You can now run such sites easily with Website clones script package.</p>
	<p><img src="http://fullycoded.com/wc.jpg" alt="Website clones of Youtube, myspace, shorter Url script and more"/></p>
	<p>The scripts that are a part of this package include :</p>
	<li>Clone of Myspace.com.
</li>
	<li>Clone of YouTube.com.
</li>
	<li>Run Imaging site like Image Shack.com.
</li>
	<li>Hotscripts.com clone.
</li>
	<li>File Sharing website site like Rapidshare.de.
</li>
	<li>Adultcheck clone - Age verification system.
</li>
	<li>Script like site WhatIsMyIP.com.
</li>
	<li>A clone of xdrive.com to backup files.
</li>
	<li>Clone of Yahoo GEOCITIES.
</li>
	<li>Shorter URL script like TinyUrl.com
</li>
	<li>and also clones of  Anonym.to, ImageShack.com, Freedomain.co.nr and SaveFile.com<br />
	<h2><a href="https://usd.swreg.org/soft_shop/43012/shopscr26.shtml">Buy Website clones script for $9.95 Only</a></h2>
</li>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=225</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Membership management script]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/227328617/" />
		<id>http://fullycoded.com/?p=224</id>
		<modified>2008-01-27T10:47:49Z</modified>
		<issued>2008-01-27T10:47:49Z</issued>
		
	<dc:subject>Website scripts</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Membership management script - Membership Juggernaut
	Membership sites are the sites of the future. This incredible script will make your whole management process a breeze.
	It is a fact that 90% of Internet marketing gurus or Internet marketing advisors make it big for them with the use of such membership sites.
	With such a cool thing you can [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=224"><![CDATA[	<p><b>Membership management script - Membership Juggernaut</b></p>
	<p>Membership sites are the sites of the future. This incredible script will make your whole management process a breeze.</p>
	<p>It is a fact that 90% of Internet marketing gurus or Internet marketing advisors make it big for them with the use of such membership sites.</p>
	<p><u>With such a cool thing you can</u> :</p>
	<li>Run your own subscription site. Create members and a huge mailing list.
</li>
	<li>Recruit and keep track of your affiliates
</li>
	<li>Make recurring income from your site by charging a periodical fee.
</li>
	<li>Automatically manage your subscription account.
</li>
	<li>Show your credibility to your members through proper use of such a membership site.
</li>
	<li>Increase your reputation among site owners and members.
</li>
	<li>Increase your Joint Ventures.
	<p>What is so good about this particular script is that it make everything professional and easy for you. </p>
	<p><u>The features of this script are</u> :
</li>
	<li>Accept one time payment via PayPal or accept recurring subscription fees using Paypal.
</li>
	<li>View/Add/Modify or Delete your members profile using your Admin Control Panel.
</li>
	<li>Easily keep track of affiliate-stats.
</li>
	<li>Entire process of sending e-mail notification to your members either when they join or cancel their membership.
</li>
	<li>E-mail your members right from your Admin panel - It can be any information - Adding new product, make an announcement/news or any special messge just for your members.
</li>
	<li>No scripting or programming knowledge needed - Easily edit your Member&#8217;s main pages, Admin pages or login pages.
</li>
	<li>And so much more&#8230;
	<p><a href="https://usd.swreg.org/cgi-bin/s.cgi?s=43012&#038;p=43012fc&#038;v=0&#038;d=0&#038;q=1"><br />
<h2>Click here to buy this incredible Membership management script for $9.95 Only</h2>
</a></li>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=224</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Download site creator script]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/218716904/" />
		<id>http://fullycoded.com/?p=223</id>
		<modified>2008-01-17T10:56:40Z</modified>
		<issued>2008-01-17T10:56:40Z</issued>
		
	<dc:subject>Website scripts</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Download site creator script
	About Download site creator script : The incredible script will help you run a download-gallery in your site where you can properly categorize all of your e-products.
	Features of Download site creator script : 
	Is easily customizable including headers and footers

	Easily create categories and downloads.

	Is user-friendly and very easy to use.

	Add/Edit and Delete [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=223"><![CDATA[	<p><u><b>Download site creator script</b></u></p>
	<p><u>About Download site creator script</u> : The incredible script will help you run a download-gallery in your site where you can properly categorize all of your e-products.</p>
	<p><u>Features of Download site creator script</u> : </p>
	<li>Is easily customizable including headers and footers
</li>
	<li>Easily create categories and downloads.
</li>
	<li>Is user-friendly and very easy to use.
</li>
	<li>Add/Edit and Delete downloads fast.
</li>
	<li>The &#8216;Add Download form&#8217; does not add unnecessary details to fill up, like many other download scripts do.
</li>
	<li>Download page will appear cleaner and professional to your members which means good reputation for your site.
</li>
	<li>Let your members, users located links to your products easily and faster hence saving them from frustration.
</li>
	<li>No need to upload Html file or the tension of having a large download page.
</li>
	<li>You wont need to manually edit any code or H.T.M.L
	<p><img src="http://fullycoded.com/downloadsitecreatorscreen.jpg" alt="Screenshot of Download site creator script"/><br />
</p>
	<h3><a href="https://usd.swreg.org/cgi-bin/s.cgi?s=43012&#038;p=43012fc&#038;v=0&#038;d=0&#038;q=1">Get Download site creator for $9.95 Only</a></h3>
</li>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=223</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[We wish you a Happy new year]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/210065153/" />
		<id>http://fullycoded.com/?p=222</id>
		<modified>2008-01-01T01:05:26Z</modified>
		<issued>2008-01-01T01:05:26Z</issued>
		
	<dc:subject>Website scripts</dc:subject>
	<dc:subject>Vb code</dc:subject>
	<dc:subject>C#</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	The team at Fullycoded.com wishes you a very happy and prosperous new year  
	We promise to deliver you better website scripts and vb source code this year.
	Regards,
ASHISH H THAKKAR and the People at Fullycoded.com

]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=222"><![CDATA[	<p>The team at Fullycoded.com wishes you a very happy and prosperous new year <img src='http://fullycoded.com/wp-images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
	<p>We promise to deliver you better website scripts and <a href="http://fullycoded.com/">vb source code</a> this year.</p>
	<p>Regards,<br />
<strong>ASHISH H THAKKAR and the People at Fullycoded.com</strong>
</p>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=222</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Read a file in C#]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/181243155/" />
		<id>http://fullycoded.com/?p=221</id>
		<modified>2007-11-02T04:53:34Z</modified>
		<issued>2007-11-02T04:53:34Z</issued>
		
	<dc:subject>C#</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Read0.cs
===
using System;
using System.IO;
namespace ns{
class zzz
{
public static void Main()
{
FileStream f = new FileStream(&#8221;c:\\c\\pointers.cs&#8221;, FileMode.Open, FileAccess.Read);
byte [] a;
a = new byte[512];
int b = f.Read(a, 0, 512);
Console.WriteLine(b);
string s = System.Text.Encoding.ASCII.GetString(a, 0, b);
Console.Write(s);
}
}
}
==
	Read.cs
===
using System.IO;
class read{
public static void Main()
{
File a=new File(&#8221;C:\\jimmy\\Comp\\Microsoft\\C#\\C#.txt&#8221;);
Stream sr=a.OpenRead();
int fp;
do{
fp=sr.ReadByte();
if(fp != -1)
System.Console.WriteLine(fp.ToString());
}
while( fp != -1);
sr.Close();
}
}
==

]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=221"><![CDATA[	<p><b>Read0.cs</b><br />
===<br />
using System;<br />
using System.IO;<br />
namespace ns{<br />
class zzz<br />
{<br />
public static void Main()<br />
{<br />
FileStream f = new FileStream(&#8221;c:\\c\\pointers.cs&#8221;, FileMode.Open, FileAccess.Read);<br />
byte [] a;<br />
a = new byte[512];<br />
int b = f.Read(a, 0, 512);<br />
Console.WriteLine(b);<br />
string s = System.Text.Encoding.ASCII.GetString(a, 0, b);<br />
Console.Write(s);<br />
}<br />
}<br />
}<br />
==</p>
	<p><b>Read.cs</b><br />
===<br />
using System.IO;<br />
class read{<br />
public static void Main()<br />
{<br />
File a=new File(&#8221;C:\\jimmy\\Comp\\Microsoft\\C#\\C#.txt&#8221;);<br />
Stream sr=a.OpenRead();<br />
int fp;<br />
do{<br />
fp=sr.ReadByte();<br />
if(fp != -1)<br />
System.Console.WriteLine(fp.ToString());<br />
}<br />
while( fp != -1);<br />
sr.Close();<br />
}<br />
}<br />
==
</p>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=221</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Joint Venture Firesale Automator]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/169908564/" />
		<id>http://fullycoded.com/?p=220</id>
		<modified>2007-09-29T13:46:35Z</modified>
		<issued>2007-09-29T13:46:35Z</issued>
		
	<dc:subject>Website scripts</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	With Joint Venture Firesale Automator you can run joint ventures easily because now you have the right tool that will help you manage the entire process easily all by yourself.
	Whether Your JV Involves Selling Time Limited based Products, One Time Offers, FireSales or Just simple Signups You can just automate your entire Joint Venture easily [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=220"><![CDATA[	<p>With <b>Joint Venture Firesale Automator</b> you can run joint ventures easily because now you have the right tool that will help you manage the entire process easily all by yourself.</p>
	<p>Whether Your JV Involves Selling Time Limited based Products, One Time Offers, FireSales or Just simple Signups You can just automate your entire Joint Venture easily with Joint Venture FireSale Automator !</p>
	<p><img src="http://fullycoded.com/jointventurecover.jpg" alt="Joint venture firesale automator" align="left"/>Advantages of <b>JV Firesale automator</b> :</p>
	<li>Completely template based so you do not have to do any coding.
</li>
	<li>Edit sales letter templates to suit yourself.
</li>
	<li>Fully automate JV start/end dates.
</li>
	<li>Saves you money coz you will not have to buy any expensive softwares or other <a href="http://www.jvwinc.com/resellrights/joint-venture-manager-jv-software/">joint venture software</a> for this - You can automatically display order buttons or signup forms.
</li>
	<li>No upload download issues as everything is done though admin area. Automation of prices - Changes prices at midnight (if opted) and updates the paypal/stormpay button plus updates firsale prices on your sales page.
</li>
	<li>Track referrals and and reward joint venture partners automatically.
</li>
	<li>Manage teaser pages easily.
</li>
	<li>Automatically the member&#8217;s area will display contest details according to contest timings.
</li>
	<li>Automate email communication
</li>
	<li>No cheating allowed. Fully IPN supported - for paypal and stormpay.
</li>
	<li>Be more personal - Personalize each and every member plus Jv partner.
</li>
	<li>Automation of payment of commision to Jv partners.
</li>
	<li>Joint Venture Firsale automator is very easy to install.
	<p><a href="https://usd.swreg.org/cgi-bin/s.cgi?s=43012&#038;p=43012fc&#038;v=0&#038;d=0&#038;q=1"><br />
<h3>Get the Joint venture firesale automator script for $9.95 Only </h3>
</a></li>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=220</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Peel Away and Page peel ads.]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/138586405/" />
		<id>http://fullycoded.com/?p=219</id>
		<modified>2007-07-08T13:01:20Z</modified>
		<issued>2007-07-08T13:01:20Z</issued>
		
	<dc:subject>Website scripts</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Javascript popup and popup maker ads are too common to see nowadays.
	You can now attract your visitors with new type of ads made in javascript  which are called the Peel Away &#166; Page peel ads. These ads show in the top right corner of your screen. See below for image :
	Before Image
	Below is what [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=219"><![CDATA[	<p><a href="http://www.jvwinc.com/popupmaker.html"><b>Javascript popup</b></a> and popup maker ads are too common to see nowadays.</p>
	<p>You can now attract your visitors with new type of ads made in javascript  which are called the <b>Peel Away | Page peel ads</b>. These ads show in the top right corner of your screen. See below for image :</p>
	<p><center><img src="http://fullycoded.com/pagepeelcorner.jpg" alt="Page peel ad image"/><br />Before Image</center></p>
	<p>Below is what you will see when your website visitor clicks or takes his mouse on the page peel area :</p>
	<p><center><img src="http://fullycoded.com/peelawayad.jpg" alt="Peel away ads"/><br />After Image</center></p>
	<p><u>Features include</u> : </p>
	<li>It is one of the best methods to get the attention without the complaints of your website visitors.
</li>
	<li>When your Site visitor moves his mouse over the Peel-Away Ad it smoothly opens with a peel off animation ad shown in the image above (&#8221;After image&#8221;).
</li>
	<li>Advertising boon - You can rotate multiple Ads with this incredible script.
</li>
	<li>Use on as many sites as you like because the setup is a piece of cake.
</li>
	<li>Includes templates inside.
</li>
	<li>Learn using the <b>step by step installation video inside</b>.</li>
	<h2><a href="https://www.paypal.com/xclick/business=ashish@jvw.in&#038;item_name=Page+Peel+Away+Ads+script&#038;item_number=jvwpagepeelaway&#038;amount=19.95&#038;no_note=1&#038;currency_code=USD&#038;lc=IN"><font color="green">Download the Page Peel | Peel away ads script for </font><font color="red">$19.95</font> ONLY</a></h2>
	<p>OR</p>
	<h2><a href="http://www.jvwinc.com/resellrights/page-peel-away-ads/"><font color="green">Buy multiple website license to Page peel away ads for </font><font color="red">$39.95</font> ONLY</a></h2>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=219</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[Helpdesk script]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/116084352/" />
		<id>http://fullycoded.com/?p=218</id>
		<modified>2007-05-11T06:11:23Z</modified>
		<issued>2007-05-11T06:11:23Z</issued>
		
	<dc:subject>Website scripts</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Why do you need helpdesk/support on your website
	What will you loose if you dont have helpdesk available
	The fact that Internet marketing gurus have support desks on their sites should be a good enough reason for you to have one too.
	
	Having a support system on your site can make you look more professional.
	
	Problems of emails : [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=218"><![CDATA[	<h2>Why do you need helpdesk/support on your website</h2>
	<h3>What will you loose if you dont have helpdesk available</h3>
	<p>The fact that Internet marketing gurus have support desks on their sites should be a good enough reason for you to have one too.</p>
	<p><a href="http://www.jvwinc.com/helpdeskadmin.jpg"><img border="0" src="http://www.jvwinc.com/helpdeskadmin.jpg" alt="Support desk admin"/></a></p>
	<li>Having a <b>support system</b> on your site can make you look more professional.
	</li>
	<li>Problems of emails : With support desk 90% of your questions are answered automatically and the rest can be taken care by you. With the problems of <a href="http://www.emailspam.info">spam blockers</a> there are chances that your support email might not even go through. So this is one more reason why you need to give online support through your website.
	</li>
	<li>Your repeat customers will increase : It&#8217;s a known fact that it is easier to sell to a satisfied customer than to acquire a new one.
	</li>
	<li>Saves time : How many times do you have to copy paste or type in the whole answer again. Why not just provide it once in your support desk ?
	<p><a href="http://www.jvwinc.com/helpdeskuser.jpg"><img border="0" src="http://www.jvwinc.com/helpdeskuser.jpg" alt="Helpdesk / Support desk user"/></a></p>
	<p>On your site a user can:</p>
	</li>
	<li>Submit a <b>support ticket</b>. Can also specify a department, ticket priority and the subject of the ticket.
</li>
	<li>Check the status of his ticket. What the last reply was on the ticket, whether the ticket is closed etc
</li>
	<li>Reopen or close ticket according to the user&#8217;s choice.
</li>
	<li>Browse through the Knowledgebase added by Admin or Operator.
</li>
	<li>View the <b>Troubleshooters</b> added by Admin/Operator.
</li>
	<li>Download files put up by Admin in the downloads folder.
</li>
	<li>Check the news and announcements added by Admin.
</li>
	<li>Popular Knowledgebase Topics gives users quick access to the most popular views and issues in <b>Knowledgebase</b>.
	<p><u>Note</u> : Unanswered questions from potential customers and delays in dealing with your buyer&#8217;s problems could cause your business losses in the long run.</p>
	<p><a href="https://usd.swreg.org/cgi-bin/s.cgi?s=43012&#038;p=43012fc&#038;v=0&#038;d=0&#038;q=1"><b><font size="5">Get this incredible Helpdesk / support script for $9.95 Only</font></b></a></li>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=218</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[SEO Niche sites creator script]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/100941804/" />
		<id>http://fullycoded.com/?p=217</id>
		<modified>2007-03-11T01:45:28Z</modified>
		<issued>2007-03-11T01:45:28Z</issued>
		
	<dc:subject>Website scripts</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	
Create a site With Content - Articles, Humour, Gaming, Pictures, Audio Clips, Video Clips And much More&#8230;
With Just A Few Simple Clicks!
	If you want repeat visitors to your site then this is the script for you.
	VIP Interactive Site Creator allows you to create ,manage and edit interactive SEO Niche sites where you can have tips, [...]]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=217"><![CDATA[	<p><img alt="Site creator box" align="left" src="http://fullycoded.com/sitecreator.jpg"/><br />
<h2>Create a site With Content - Articles, Humour, Gaming, Pictures, Audio Clips, Video Clips And much More&#8230;<br />
<font color="red">With Just A Few Simple Clicks!</font></h2>
	<p>If you want repeat visitors to your site then this is the script for you.</p>
	<p><b>VIP Interactive Site Creator</b> allows you to create ,manage and edit interactive <u>SEO Niche sites</u> where you can have tips, articles, jokes, images, audio/video content and games.</p>
	<p>The benefits of this script are :</p>
	<li><b>Manage everything from the admin panel</b> itself : Entire content, templates, ratings given/comments written, registered users and just about everything.
	</li>
	<li><b>Add, edit and manage</b> all content in categories/sub categories.
	</li>
	<li>Users can not only <b>give a rating</b> to the content but can also add their valuable comments.
	</li>
	<li>No need for external video players: Users can <b>see videos</b> using video section and can hear the <b>audio files in the audio section</b>.
	</li>
	<li>Users can add/submit links (this requires admin approval first).
	</li>
	<li>Create an e-newsletter for site visitors and <b>gain subscribers to build your list</b>.
	</li>
	<li>Select the look of your site from the available themes.<br />
<center><img alt="Vip site creator template image" src="http://fullycoded.com/template-setting.jpg"/></center></p>
	</li>
	<li><b>Picture section</b> displays picture&#8217;s details such as category, rating, and views. Clicking on a picture displays other details such as author, size of the file plus its description.
	</li>
	<li>Administrator can <b>add any types of games</b> in the games section.
	</li>
	<li>Add <a href="http://www.google.com/adsense/">Google Adsense</a> code or any other advertising code inside the admin panel. Ads will be displayed on all pages in header and footer areas.
	</li>
	<li>Add, edit and manage users, user-credits from admin.
	</li>
	<li>Add/edit/manage content like the newsletter, advertisements and user comments.
	</li>
	<li>Search facility : Users can <b>search for pics, audio/videos, games, jokes, e-newsletters</b> etc. <br />
<center><img alt="Interactive site creator index page" width="450" src="http://fullycoded.com/index-page-interactive-site-creator.jpg"/></center>
</li>
	<li>Pages will have static links. Which means they will be <b>search engine friendly</b>.
	</li>
	<li><b>Generate Reports</b>, and Add, edit and manage the meta-tags of any of your website pages.</li>
	<h2><a href="https://usd.swreg.org/soft_shop/43012/shopscr26.shtml"><font color="green">Get this incredible site creator script for </font><font color="red">$9.95</font> ONLY</a> <a href="http://www.jvwinc.com/resellrights/site-creator-script-with-resell-rights/"><font color="green">with resell rights</font></a></h2>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=217</feedburner:origLink></entry>
		<entry>
	  	<author>
			<name>admin</name>
		</author>
		<title type="text/html" mode="escaped"><![CDATA[C# source code : Print page]]></title>
		<link rel="alternate" type="text/html" href="http://feeds.feedburner.com/~r/JvwFullycoded/~3/79709928/" />
		<id>http://fullycoded.com/?p=216</id>
		<modified>2007-01-21T08:22:08Z</modified>
		<issued>2007-01-21T08:22:08Z</issued>
		
	<dc:subject>C#</dc:subject> 
		<summary type="text/plain" mode="escaped"><![CDATA[	Print.cs
using System;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Printing;
using System.IO;
public class zzz
{
public void abc()
{
PrintDocument pd = new PrintDocument(); 
pd.PrintPage += new PrintPageEventHandler(pqr);
pd.Print();
}
void pqr(object o, PrintPageEventArgs e)
{
Image i = Image.FromFile(&#8221;code.jpg&#8221;);
Point p = new Point(100, 100);
e.Graphics.DrawImage(i, p);
e.Graphics.DrawString (&#8221;C sharp source code&#8221;, new Font(&#8221;Courier New&#8221;,10), Brushes.Black, 100, 600);
}
public static void Main()
{
zzz a = new zzz();
a.abc();
}
}

]]></summary>
		<content type="text/html" mode="escaped" xml:base="http://fullycoded.com/?p=216"><![CDATA[	<p><b>Print.cs</b><br />
using System;<br />
using System.Windows.Forms;<br />
using System.Drawing;<br />
using System.Drawing.Printing;<br />
using System.IO;<br />
public class zzz<br />
{<br />
public void abc()<br />
{<br />
<b>PrintDocument pd = new PrintDocument(); </b><br />
pd.PrintPage += new PrintPageEventHandler(pqr);<br />
pd.Print();<br />
}<br />
void pqr(object o, PrintPageEventArgs e)<br />
{<br />
Image i = Image.FromFile(&#8221;code.jpg&#8221;);<br />
Point p = new Point(100, 100);<br />
e.Graphics.DrawImage(i, p);<br />
e.Graphics.DrawString (&#8221;C sharp source code&#8221;, new Font(&#8221;Courier New&#8221;,10), Brushes.Black, 100, 600);<br />
}<br />
public static void Main()<br />
{<br />
zzz a = new zzz();<br />
a.abc();<br />
}<br />
}
</p>
]]></content>
	<feedburner:origLink>http://fullycoded.com/?p=216</feedburner:origLink></entry>
	</feed>
