<?xml version="1.0" encoding="utf-8"?><!-- generator="WordPress/2.8.5" -->
<rss version="0.92">
<channel>
	<title>Fullycoded.com</title>
	<link>http://fullycoded.com</link>
	<description>Best website scripts, Source code in Visual basic, php, cgi , javascript and asp...</description>
	<lastBuildDate>Tue, 12 Jan 2010 18:26:26 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Bulk Pagerank checker</title>
		<description>Title : Bulk Pagerank Checker

Runs on : Windows, requires php enabled server.

About this Application : Bulk Pagerank checker is a mass pagerank checker software by RebrandableSoftware.net. The software is a cool tool to find out pagerank of sites based on 4 factors.

1. Simple Pagerank check.

2. Pagerank checker of a text ...</description>
		<link>http://fullycoded.com/?p=282</link>
			</item>
	<item>
		<title>Applet in Java</title>
		<description>Applet code in Java 

applE1.java
---
/**
*for writing(drawstring)
*your class shud always be a subclass of applet class
*@author : Ashish H Thakkar 
*/

import java.awt.*; //pg 329
import java.applet.*;
/* &#60;applet code="applE1" width=200 height=200>  */
public class applE1 extends Applet //accessed by code outside the prog
{
public void paint(Graphics g) // overiding method
{
g.drawString("My first applet so soon ...</description>
		<link>http://fullycoded.com/?p=278</link>
			</item>
	<item>
		<title>Abstract code in Java</title>
		<description>abstracT.java

---
/**
*any method is absTRACT then class shud be absTRACT.
*CANT CREATE METHOD OF ABSTRACT CLASS
*cant overide a final method , cant change final variable and 
*final class cant be abstract and final class cant be extended
*@author : Ashish H Thakkar 
*/
abstarct class demo
{
int x=5,y=10;
abstract void abc(); 
//not giving body hence abst.cant ...</description>
		<link>http://fullycoded.com/?p=275</link>
			</item>
	<item>
		<title>Optimize Windows XP</title>
		<description>Title : Optimize Windows Xp using software.

About this Application : Xp Tweak mechanic is a desktop application which can help you improve and optimize the performance of your Windows xp operating system. The software also helps  you boost your internet speed to some level.

The software is a must for ...</description>
		<link>http://fullycoded.com/?p=261</link>
			</item>
	<item>
		<title>Content extractor</title>
		<description>Title : Content extractor by Jvw.

About : Content creation and content extraction software.

Category : Desktop application.

Review : 
The application is a simple desktop tool to create content from the world wide web.
Surprisingly the content extracted is search engine friendly and extracted content comes in SERPs also.
The software is pretty fast ...</description>
		<link>http://fullycoded.com/?p=256</link>
			</item>
	<item>
		<title>Automatic backup software</title>
		<description>Title : Automatic backup software with source code.

About this Application : It is a desktop application which can help you create automatic backup for your files and various folders. Think about how much time this can save you if everything is simply automatic.

The software is helpful to you because it ...</description>
		<link>http://fullycoded.com/?p=248</link>
			</item>
	<item>
		<title>Javascript popup software</title>
		<description>Title : Javascript popup source code for software.

About Application : This desktop application can help you create javascript popup windows that are unstoppable by popup blocking softwares and pop-up blockers that are installed within the toolbars.

The types of popup windows this software can create are :
1. StickMe Note
2. Timer Ads
3. ...</description>
		<link>http://fullycoded.com/?p=246</link>
			</item>
	<item>
		<title>Visual Basic source code for Article extractor</title>
		<description>Title : VB Code for Article extractor to find article.

About Application : The desktop application will help you find articles of your niche and extract them for you to study or to use them for your article site or website. Please visit the application website at http://www.jvwinc.com/article-extractor.html to know more.

Cost ...</description>
		<link>http://fullycoded.com/?p=241</link>
			</item>
	<item>
		<title>Warning and error in C#</title>
		<description>WARNING.CS
===


#warning This is A warning
class zzz
{
//#error This is An error
public static void Main()
{
System.Console.WriteLine("MAIN"); 
}
}


===

For other C# code or website scripts source code please visit http://fullycoded.com/ </description>
		<link>http://fullycoded.com/?p=240</link>
			</item>
	<item>
		<title>While and Writeline in c sharp</title>
		<description>C# code for While and Writeline

1. While1.cs :

class zzz
{
static void Main()
{
int ii;
ii=1;
while ( ii < = 5 ) 
{
System.Console.WriteLine ("Hi  {0}", ii);
	ii++;
}
}
}

2. Writeline1.cs :

// created on 3/1/2008 at 12:36 AM
class callingfunction
{
	static void Main(){
		
		System.Console.WriteLine("Hundred ={0}",100);
		                ...</description>
		<link>http://fullycoded.com/?p=239</link>
			</item>
	<item>
		<title>Virtual Override</title>
		<description>Similar to C# code for virtual we provide you Virtual OverRide code

class zzz
{
public static void Main()
{
yyy a = new yyy();xxx b = new xxx();yyy c = new xxx();
a.abc();a.pqr();a.xyz();
b.abc();b.pqr();b.xyz();
c.abc();c.pqr();c.xyz();
}}
class yyy
{
public virtual void abc()
{System.Console.WriteLine("yyy abc");}
public virtual void pqr()
{System.Console.WriteLine("yyy pqr");}
public virtual void xyz()
{System.Console.WriteLine("yyy xyz");}
}
class xxx : yyy
{
public override void abc()
{System.Console.WriteLine("xxx abc");}
public new void ...</description>
		<link>http://fullycoded.com/?p=238</link>
			</item>
	<item>
		<title>Virtual.cs C# code</title>
		<description>Virtual.cs
===


class zzz
{
public static void Main()
{
yyy a = new xxx();
yyy b = new vvv();
xxx c = new vvv();
a.abc();a.pqr();a.xyz();b.abc();b.pqr();b.xyz();c.abc();c.pqr();c.xyz();}}
class yyy
{
public void abc()
{System.Console.WriteLine("yyy abc");}
public virtual void pqr()
{System.Console.WriteLine("yyy pqr");}
public virtual void xyz()
{System.Console.WriteLine("yyy xyz");}
}
class xxx : yyy
{
public virtual void abc()
{System.Console.WriteLine("xxx abc");}
public new void pqr()
{System.Console.WriteLine("xxx pqr");}
public override void xyz()
{System.Console.WriteLine("xxx xyz");}
}
class vvv : xxx
{
public override void abc()
{System.Console.WriteLine("vvv ...</description>
		<link>http://fullycoded.com/?p=237</link>
			</item>
	<item>
		<title>Unsafe code in C#</title>
		<description>Unsafe : This means pointers are allowed in C# code. If you wish to compile unsafe code then should specify the /unsafe compiler option in the command line(This is not required if you are using Visual Studio.NET).


using System;
class zzz {
public static void Main() {
yyy a = new yyy();
a.abc();
}
}
unsafe class yyy ...</description>
		<link>http://fullycoded.com/?p=236</link>
			</item>
	<item>
		<title>C# code for Throw</title>
		<description>class zzz
{
public static void Main()
{
yyy a;
a=new yyy();
try
{
a.abc();
System.Console.WriteLine("Bye");
}
catch (System.Exception e)
{
System.Console.WriteLine("In Exception"+ e.ToString());
}
System.Console.WriteLine("After Exception");
System.Console.Read();
}
}
class yyy {
public void abc()
{
throw new System.Exception("C# Throw code exception");
System.Console.WriteLine("C# Throw code");
}
} </description>
		<link>http://fullycoded.com/?p=235</link>
			</item>
	<item>
		<title>Threads in C# programming</title>
		<description>1. C# Threads Example 1
using System.Threading;
public class yyy
{
public void abc()
{
for ( int i = 0; i< =3;i++)
{
System.Console.Write(i + " ");
}
}
public void pqr()
{
for ( int i = 0; i </description>
		<link>http://fullycoded.com/?p=234</link>
			</item>
</channel>
</rss>
