<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-955774811161421339</atom:id><lastBuildDate>Fri, 23 Oct 2009 04:23:42 +0000</lastBuildDate><title>Technorat!</title><description>NEVER MIND IF  GET SOMETHING FOR FREE</description><link>http://proamrishwa.blogspot.com/</link><managingEditor>noreply@blogger.com (amrishwa)</managingEditor><generator>Blogger</generator><openSearch:totalResults>29</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Technorat" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-2372128704451744398</guid><pubDate>Fri, 18 Sep 2009 05:22:00 +0000</pubDate><atom:updated>2009-09-18T08:36:15.036-07:00</atom:updated><title>Showing Tooltip Dynamically on JbuttonActionPerfomed.</title><description>&lt;p&gt;&lt;img style="width: 117px; height: 165px" src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg"&gt;&lt;/p&gt; &lt;div style="position: absolute"&gt;&lt;/div&gt; &lt;p&gt;Here is the simple code for showing a custom tooltip..&lt;/p&gt; &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;pre&gt;Timer schi=null; &lt;/pre&gt;&lt;br /&gt;&lt;p&gt;I have taken a &lt;strong&gt;&lt;em&gt;schi instance level timer type variable&lt;/em&gt;&lt;/strong&gt; to set when the tooltip it has to hide.&lt;/p&gt;&lt;pre&gt;int delay=5000;&lt;br /&gt;int period=10000;&lt;/pre&gt;&lt;pre&gt;These Two are instance level variable defined for the after that delay timer will execute and period is after each 10000 It will Execute&lt;/pre&gt;&lt;pre&gt;&lt;/pre&gt;&lt;pre&gt;&lt;strong&gt;ttip&lt;/strong&gt; is a Tooltip instance variable&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://lh3.ggpht.com/_vklrZBTlzOo/SrMZE570CnI/AAAAAAAAAJk/m6jC0_Ofqbg/s1600-h/tooltip8.gif"&gt;&lt;img title="tooltip" style="display: block; float: none; margin-left: auto; margin-right: auto" height="199" alt="tooltip" src="http://lh6.ggpht.com/_vklrZBTlzOo/SrMZHy0zcoI/AAAAAAAAAJo/AyQ6o6MUZHI/tooltip_thumb6.gif?imgmax=800" width="273" border="0"&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;on &lt;strong&gt;&lt;em&gt;jbutton action perfomed &lt;/em&gt;&lt;/strong&gt;dynamically popping up the tooltip with this code.&lt;/p&gt;&lt;pre&gt; &lt;font size="4"&gt;try{schi.cancel();}&lt;br /&gt;        catch(Exception es)&lt;br /&gt;        {&lt;br /&gt;            System.out.println(""+es);&lt;br /&gt;        }&lt;br /&gt;        Point pp=evt.getLocationOnScreen();&lt;br /&gt;        try{&lt;br /&gt;        ttip.hide();}catch(Exception ed){&lt;br /&gt;            System.out.println("how");&lt;br /&gt;        }&lt;br /&gt;        ttip=new ToolTip("Text is here");&lt;br /&gt;        ttip.setText(jTextField1.getText());&lt;br /&gt;        ttip.setSize(200, 200);&lt;br /&gt;        ttip.setLocation(pp);&lt;br /&gt;        ttip.show();&lt;br /&gt;        &lt;br /&gt;hidema();&lt;/font&gt;&lt;/pre&gt;&lt;pre&gt;&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;_________________________&lt;/p&gt;&lt;br /&gt;&lt;p&gt;_____________________&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;font size="3"&gt;hidema()&lt;strong&gt; &lt;/strong&gt;is a function in which schi timer is defined&lt;/font&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;font size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;font size="3"&gt;code inside hidema is actually used to hide the tooltip&lt;/font&gt;&lt;/p&gt;&lt;pre&gt;&lt;font size="3"&gt; void hidema()&lt;br /&gt;    { &lt;br /&gt; try{&lt;br /&gt;    schi=new Timer();&lt;br /&gt;    schi.scheduleAtFixedRate(new TimerTask()&lt;br /&gt;    {&lt;br /&gt;        public void run()&lt;br /&gt;        {&lt;br /&gt;       //  here stops&lt;br /&gt;    ttip.hide();&lt;br /&gt;            &lt;br /&gt;             &lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;    },elay,eriod);&lt;br /&gt;    //schi.cancel();&lt;br /&gt;    }catch(NullPointerException npe)&lt;br /&gt;    {&lt;br /&gt;        System.out.println("got isded"+npe);&lt;br /&gt;    }&lt;br /&gt;    }&lt;/font&gt;&lt;/pre&gt;&lt;pre&gt;===========================&lt;/pre&gt;&lt;br /&gt;&lt;p align="left"&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;&lt;!--&lt;br /&gt;google_ad_client = "pub-9741936374950505";&lt;br /&gt;/* 250x250, created 12/09/09 in blog */&lt;br /&gt;google_ad_slot = "5855809254";&lt;br /&gt;google_ad_width = 250;&lt;br /&gt;google_ad_height = 250;&lt;br /&gt;//--&gt;&lt;br /&gt;&lt;/script&gt;&lt;script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;&lt;br /&gt;&lt;/script&gt;&lt;/p&gt;&lt;pre&gt;&lt;/pre&gt;&lt;br /&gt;&lt;p&gt;========================== &lt;/p&gt;&lt;br /&gt;&lt;p&gt;If you want to download full source&lt;/p&gt;&lt;br /&gt;&lt;p&gt;==========================&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&amp;nbsp;&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/Java%20tooltip%20on%20runtime.rar"&gt;Source Code&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;==========================&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-2372128704451744398?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/RXYmekVk5TM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/RXYmekVk5TM/showing-tooltip-dynamically-on.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/09/showing-tooltip-dynamically-on.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-5738590900171847397</guid><pubDate>Thu, 10 Sep 2009 04:36:00 +0000</pubDate><atom:updated>2009-09-16T00:10:23.338-07:00</atom:updated><title>Play Mp3 Files In java</title><description>&lt;div align="left"&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;/div&gt;&lt;img align="left" height="123" src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" style="display: inline; margin-left: 0px; margin-right: 0px;" width="116" /&gt;   &lt;br /&gt;
&lt;br /&gt;
First of all You have to download &lt;b&gt;Java Media Framework API&lt;/b&gt; to perform this example you can download it at &lt;b&gt;Sun&lt;/b&gt; Microsystem website .&lt;br /&gt;
&lt;a href="http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/download.html"&gt;JMF&lt;/a&gt;&lt;br /&gt;
There after import the following packages in java desktop application&lt;br /&gt;
&amp;nbsp;&lt;a href="http://lh6.ggpht.com/_vklrZBTlzOo/SqiCNfI8pTI/AAAAAAAAAIc/2sd_oesd0p4/s1600-h/mediaplayer%5B10%5D.png"&gt;&lt;img alt="mediaplayer" border="0" height="93" src="http://lh3.ggpht.com/_vklrZBTlzOo/SqiCSDIKpWI/AAAAAAAAAIg/p9VIzgD6fug/mediaplayer_thumb%5B8%5D.png?imgmax=800" style="border-width: 0px; display: inline; margin-left: 0px; margin-right: 0px;" title="mediaplayer" width="374" /&gt;&lt;/a&gt; &lt;br /&gt;
&lt;div align="justify"&gt;&lt;b&gt;import org.jdesktop.application.Action;&lt;/b&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;import org.jdesktop.application.SingleFrameApplication;&lt;/b&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;import org.jdesktop.application.FrameView;&lt;/b&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;import javax.media.Manager;&lt;/b&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;import javax.media.MediaLocator;&lt;/b&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;import javax.media.Player;&lt;/b&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;import javax.swing.JDialog;&lt;/b&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;import javax.swing.JFileChooser;&lt;/b&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;import javax.swing.JFrame;&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-9741936374950505";
/* 250x250, created 09/09/09 inside vlog */
google_ad_slot = "1615124536";
google_ad_width = 250;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;b&gt;&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;Take a Instance level variable player &lt;/div&gt;&lt;div align="left"&gt;&lt;/div&gt;&lt;div align="left"&gt;and on jbutton click action performed&lt;/div&gt;&lt;div align="left"&gt;&lt;/div&gt;&lt;div align="left"&gt;try    &lt;br /&gt;
{     &lt;br /&gt;
MediaLocator ml=new MediaLocator(&lt;a href="file:///+%E2%80%9Dc:/ram.mp3"&gt;file:///+”c:/ram.mp3&lt;/a&gt;”);     &lt;br /&gt;
player=Manager.createPlayer(ml);     &lt;br /&gt;
player.realize();     &lt;br /&gt;
player.start(); &lt;/div&gt;&lt;div align="left"&gt;}    &lt;br /&gt;
catch(Exception esf)     &lt;br /&gt;
{     &lt;br /&gt;
System.out.println(""+esf);     &lt;br /&gt;
}&lt;/div&gt;&lt;div align="left"&gt;&lt;b&gt;&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;for stopping it just access the instance level variable &lt;b&gt;player&lt;/b&gt; and call its &lt;b&gt;stop()&lt;/b&gt;&lt;/div&gt;&lt;div align="left"&gt;function.&lt;/div&gt;&lt;br /&gt;
You can download the full source code here&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/Simple%20Play%20Mp3%20Files%20In%20java.rar"&gt;Source Code&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-5738590900171847397?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/DIeGisbv8JA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/DIeGisbv8JA/play-mp3-files-in-java.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/09/play-mp3-files-in-java.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-3988815541895735371</guid><pubDate>Wed, 09 Sep 2009 07:13:00 +0000</pubDate><atom:updated>2009-09-16T00:11:48.879-07:00</atom:updated><title>Adding File in Resource and Retrieving Using Java</title><description>&lt;img height="100" src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" width="94" /&gt;&lt;br /&gt;
&lt;h5&gt;&lt;/h5&gt;I Have Used &lt;a href="http://www.blogger.com/www.netbeans.org"&gt;Netbeans&lt;/a&gt; To develop This code so first of all do as shown in picture to add image in your project.&lt;br /&gt;
For example your project name is &lt;b&gt;Your Project &lt;/b&gt;then expand the Source Package Tree&lt;br /&gt;
you will see a pakage named as &lt;b&gt;&lt;i&gt;yourproject.resources &lt;/i&gt;&lt;/b&gt;expand it too as in image below&lt;br /&gt;
&amp;nbsp;&lt;a href="http://lh4.ggpht.com/_vklrZBTlzOo/SqdZKP0Mc4I/AAAAAAAAAIE/j6T-zi27bpM/s1600-h/project49.png"&gt;&lt;img alt="project" height="228" src="http://lh3.ggpht.com/_vklrZBTlzOo/SqdZNxxcUNI/AAAAAAAAAII/ID736IN0cr0/project_thumb47.png?imgmax=800" style="display: inline;" title="project" width="240" /&gt;&lt;/a&gt; &lt;br /&gt;
now Expand &lt;b&gt;YourProjectApp.properties&lt;/b&gt; and right click on &lt;b&gt;YourProjectApp.properties &lt;/b&gt;as shown below&amp;nbsp; &lt;br /&gt;
and go to add and click to &lt;b&gt;property&lt;/b&gt; as shown in picture&lt;br /&gt;
&lt;a href="http://lh6.ggpht.com/_vklrZBTlzOo/SqdZQhOkOiI/AAAAAAAAAIM/5vBUOYC28Kc/s1600-h/YourProjectApprightclick11.png"&gt;&lt;img alt="YourProjectApp right click" border="0" height="200" src="http://lh4.ggpht.com/_vklrZBTlzOo/SqdZURyTV8I/AAAAAAAAAIQ/54NDDBwv0Zo/YourProjectApprightclick_thumb9.png?imgmax=800" style="border-width: 0px; display: inline; margin-left: 0px; margin-right: 0px;" title="YourProjectApp right click" width="297" /&gt;&lt;/a&gt;&lt;br /&gt;
This dialog will appear &lt;br /&gt;
&lt;a href="http://lh6.ggpht.com/_vklrZBTlzOo/SqdZXthkUmI/AAAAAAAAAIU/N2rGXQMT3sM/s1600-h/dialog7.png"&gt;&lt;img alt="dialog" border="0" height="149" src="http://lh3.ggpht.com/_vklrZBTlzOo/SqdZbYLKtxI/AAAAAAAAAIY/Qh-3T05C9Sc/dialog_thumb5.png?imgmax=800" style="border-width: 0px; display: inline; margin-left: 0px; margin-right: 0px;" title="dialog" width="244" /&gt;&lt;/a&gt;&lt;br /&gt;
now fill key as per your choice for ex: hutch&lt;br /&gt;
and value is the file name you going to add ex.”&lt;b&gt;hutch.png”&lt;/b&gt;&lt;br /&gt;
now go to physically your project resources folder for ex.&lt;br /&gt;
&lt;b&gt;“F:\Your Project\src\yourproject\resources”&lt;/b&gt; and paste the image file you want to add..&lt;br /&gt;
now add a jbutton and&amp;nbsp; jlabel on the jframe or jpanel…on &lt;b&gt;jbutton actionperfomed&lt;/b&gt; put this code&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;org.jdesktop.application.ResourceMap rMap = 
org.jdesktop.application.Application.getInstance(yourproject.YourProjectApp.class).getContext()
getResourceMap(YourProjectAboutBox.class); 
jLabel1.setIcon(rMap.getIcon("hutch"));&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now Your Are all done click the button and see the output&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click below to launch the example&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download Full Source Code &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/Your%20Project.rar"&gt;Source Code&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-3988815541895735371?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/TWaLWbAVDeU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/TWaLWbAVDeU/adding-file-in-resource-and-retrieving.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/09/adding-file-in-resource-and-retrieving.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-3536165103551460480</guid><pubDate>Mon, 07 Sep 2009 07:34:00 +0000</pubDate><atom:updated>2009-09-16T00:12:32.769-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">cursor</category><category domain="http://www.blogger.com/atom/ns#">change</category><category domain="http://www.blogger.com/atom/ns#">awt</category><title>Change Cursor in Java</title><description>&lt;img src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" style="height: 137px; width: 148px;" /&gt;&lt;br /&gt;
&lt;div style="text-align: left;"&gt;Here is the code to change mouse cursor on the jframe...&lt;/div&gt;&lt;div style="text-align: left;"&gt;using java.awt it is just two line code&lt;/div&gt;&lt;div style="text-align: left;"&gt;I have done it on jbutton action performed event..you can use it as per your requirement&lt;/div&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/_vklrZBTlzOo/Sq8sZmCVZKI/AAAAAAAAAIk/9K1NRPADFo4/s1600-h/cursorchange.gif" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_vklrZBTlzOo/Sq8sZmCVZKI/AAAAAAAAAIk/9K1NRPADFo4/s320/cursorchange.gif" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span style="background-color: yellow;"&gt;Cursor cr=newCursor(java.awt.Cursor.WAIT_CURSOR);&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span style="background-color: yellow;"&gt;&amp;nbsp;CursorChangeApp.getApplication().getMainFrame().setCursor(cr);&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;Or if you want the full source code download it here&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/change%20cursor.rar"&gt;Source Code&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-3536165103551460480?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/TGj67aTxPrc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/TGj67aTxPrc/change-cursor-in-java.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_vklrZBTlzOo/Sq8sZmCVZKI/AAAAAAAAAIk/9K1NRPADFo4/s72-c/cursorchange.gif" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/09/change-cursor-in-java.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-8611736706838666052</guid><pubDate>Sun, 06 Sep 2009 09:35:00 +0000</pubDate><atom:updated>2009-09-16T00:13:18.206-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Font</category><category domain="http://www.blogger.com/atom/ns#">swing</category><category domain="http://www.blogger.com/atom/ns#">jlabel</category><category domain="http://www.blogger.com/atom/ns#">jslider</category><category domain="http://www.blogger.com/atom/ns#">awt</category><category domain="http://www.blogger.com/atom/ns#">increse</category><title>Increasing Jlabel Font size Dynamically</title><description>&lt;div style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;/div&gt;&lt;img height="200" src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" width="150" /&gt;&lt;br /&gt;
I have taken a Jlabel and jslider i have put all increasing code inside this slider event&lt;br /&gt;
&amp;nbsp;&lt;i&gt;jSlider1StateChanged&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="background-color: #b6d7a8;"&gt;&lt;/div&gt;&lt;span style="background-color: yellow;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int g=jSlider1.getValue();&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: yellow;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f=g;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_vklrZBTlzOo/Sq8twa7MWoI/AAAAAAAAAIs/i0ihyZ-aWHY/s1600-h/jslider.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_vklrZBTlzOo/Sq8twa7MWoI/AAAAAAAAAIs/i0ihyZ-aWHY/s320/jslider.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="background-color: yellow;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println(g);&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: yellow;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Font o=new Font("SimHei",Font.BOLD, f);&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: yellow;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fg=o;&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: yellow;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jLabel2.setFont(o);&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: yellow;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jLabel2.setText("www.proamrishwa.blogspot.com");&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: red;"&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style="color: black;"&gt;If you want to download full source code download it here&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/Increasing%20Font%20size%20dynamically.rar"&gt;Source Code&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-8611736706838666052?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/hSZh8rSkx1M" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/hSZh8rSkx1M/increasing-jlabel-font-size-dynamically.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_vklrZBTlzOo/Sq8twa7MWoI/AAAAAAAAAIs/i0ihyZ-aWHY/s72-c/jslider.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/09/increasing-jlabel-font-size-dynamically.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-6361681218517879154</guid><pubDate>Thu, 27 Aug 2009 05:58:00 +0000</pubDate><atom:updated>2009-09-16T00:14:09.078-07:00</atom:updated><title>How to Find File Extension in java</title><description>&lt;img height="149" src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" width="160" /&gt;There is no support for finding file extension in java ...so i have done it through String operation ..first of all take the file absolute file..&lt;br /&gt;
there after&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/_vklrZBTlzOo/Sq8u290YmgI/AAAAAAAAAI0/M9rZT_g7bHQ/s1600-h/file+attrib.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_vklrZBTlzOo/Sq8u290YmgI/AAAAAAAAAI0/M9rZT_g7bHQ/s320/file+attrib.png" /&gt;&lt;/a&gt;&lt;br /&gt;
type the following code on jbutton action performed&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #666666;"&gt;JFileChooser jf=new  JFileChooser();&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        jf.setFileSelectionMode(jf.FILES_ONLY);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        int a=jf.showOpenDialog(null);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        if(a==jf.APPROVE_OPTION)&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        {&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;         File fin=new File(jf.getSelectedFile().toString());&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;         String mts=fin.getAbsolutePath();&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;         String exetensiom=mts;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        int pos=exetensiom.lastIndexOf(".");&lt;/span&gt;&lt;span style="color: silver;"&gt;//some time  it generates a exception so please place it in try catch&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;exetensiom=exetensiom.substring(pos);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        jLabel1.setText("file extension is "+exetensiom);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        }&lt;/span&gt;&lt;br /&gt;
also you can download full source code from here&lt;br /&gt;
&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/Get%20File%20Extension.rar"&gt;Source Code&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I have written this code in netbeans 6.5 using jdk 1.6&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-6361681218517879154?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/BWOlPj2laQ0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/BWOlPj2laQ0/how-to-find-file-extension-in-java.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_vklrZBTlzOo/Sq8u290YmgI/AAAAAAAAAI0/M9rZT_g7bHQ/s72-c/file+attrib.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/08/how-to-find-file-extension-in-java.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-5114554575043047801</guid><pubDate>Mon, 24 Aug 2009 07:30:00 +0000</pubDate><atom:updated>2009-09-16T00:14:44.037-07:00</atom:updated><title>Detecting Host Os and IP Address Using java</title><description>&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;img height="133" src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" width="134" /&gt;&lt;br /&gt;
&lt;br /&gt;
I am going to write the code for detecting local pc name and ip address of localpc using java&lt;br /&gt;
i have take a java desktop application in netbeans 6.5 having jdk1.6 running on windows vista ultimate..&lt;br /&gt;
i have taken a &lt;b&gt;&lt;span style="color: #ff6666;"&gt;instance varible String Array type s1&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #666666;"&gt; initilizing it on jbutton action performed.&lt;br /&gt;
as..&lt;br /&gt;
&lt;span style="color: #999999;"&gt;s1=new String[] {&lt;br /&gt;
java.net.InetAddress.getLocalHost().getCanonicalHostName()&lt;br /&gt;
,java.net.InetAddress.getLocalHost().getHostAddress()&lt;br /&gt;
,System.getProperty("user.name")&lt;br /&gt;
,System.getProperty("os.name")&lt;br /&gt;
};&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;span style="color: #666666;"&gt;&lt;span style="color: #999999;"&gt;&lt;span style="color: #ff6666;"&gt;java.net.InetAddress.getLocalHost().getCanonicalHostName()&lt;span style="color: #999999;"&gt; &lt;span style="color: #330033;"&gt;It gets your PC name.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="color: #ff6666;"&gt;java.net.InetAddress.getLocalHost().getHostAddress() &lt;span style="color: #330033;"&gt;It gets your Ip address.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="color: #ff6666;"&gt;System.getProperty("user.name")  &lt;span style="color: #330033;"&gt;It gets your username.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="color: #ff6666;"&gt;System.getProperty("os.name") &lt;span style="color: #330033;"&gt;It gets your Operating System Name.&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;Note :-You have to &lt;span style="color: #ff6600;"&gt;import java.net &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
you can also download full source code from here&lt;br /&gt;
&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/gethostdata.rar"&gt;Source Code&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="zemanta-pixie"&gt;&lt;img alt="" class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=0506f5ad-9bb0-8da3-8a09-8e5379245abe" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-5114554575043047801?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/2mOYX823oTs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/2mOYX823oTs/detecting-host-os-and-ip-address-using.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/08/detecting-host-os-and-ip-address-using.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-8174342308151863042</guid><pubDate>Sat, 22 Aug 2009 20:01:00 +0000</pubDate><atom:updated>2009-09-16T00:15:24.884-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">java</category><category domain="http://www.blogger.com/atom/ns#">jframe</category><category domain="http://www.blogger.com/atom/ns#">swing</category><category domain="http://www.blogger.com/atom/ns#">jpanel</category><title>Jcolor Chooser</title><description>&lt;img src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" style="height: 113px; width: 129px;" /&gt;&lt;br /&gt;
&lt;div style="text-align: left;"&gt;&lt;br /&gt;
Its a jcolor chooser popping it up through jbutton click&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_vklrZBTlzOo/Sq8xeDo2GDI/AAAAAAAAAJE/Et1pSJszIXI/s1600-h/color+chosser.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_vklrZBTlzOo/Sq8xeDo2GDI/AAAAAAAAAJE/Et1pSJszIXI/s320/color+chosser.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
here is the code on jbutton action performed&lt;br /&gt;
&lt;br /&gt;
&lt;div style="background-color: white; color: black;"&gt;Color cl=JColorChooser.showDialog(mainPanel, "Select a Color", mainPanel.getBackground());&lt;/div&gt;&lt;div style="background-color: white; color: black;"&gt;if(cl!=null){&lt;/div&gt;&lt;div style="background-color: white; color: black;"&gt;mainPanel.setBackground(cl);&lt;/div&gt;&lt;div style="background-color: white; color: black;"&gt;jLabel1.setBackground(cl);&lt;/div&gt;&lt;div style="background-color: white; color: black;"&gt;&lt;/div&gt;&lt;div style="background-color: white; color: black;"&gt;}&lt;/div&gt;&lt;div style="background-color: white; color: black;"&gt;else&lt;/div&gt;&lt;div style="background-color: white; color: black;"&gt;System.out.println("Not found colors");&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
you can download full source code here&lt;br /&gt;
&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/Color%20Chooser.rar"&gt;Source Code&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-8174342308151863042?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/xWkR69sOYMg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/xWkR69sOYMg/jcolor-chooser.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_vklrZBTlzOo/Sq8xeDo2GDI/AAAAAAAAAJE/Et1pSJszIXI/s72-c/color+chosser.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/08/jcolor-chooser.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-1761686190847065524</guid><pubDate>Thu, 20 Aug 2009 07:13:00 +0000</pubDate><atom:updated>2009-09-16T00:15:57.871-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">java</category><category domain="http://www.blogger.com/atom/ns#">jframe</category><category domain="http://www.blogger.com/atom/ns#">swing</category><category domain="http://www.blogger.com/atom/ns#">jfilechosser in java</category><category domain="http://www.blogger.com/atom/ns#">netbeans</category><category domain="http://www.blogger.com/atom/ns#">open file dialog in java</category><title>Java Swing Simple Open File dialog</title><description>&lt;img src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" style="height: 137px; width: 148px;" /&gt;&lt;br /&gt;
&lt;br /&gt;
Its a simple jfile chooser dynamically created by button click&lt;br /&gt;
&lt;br /&gt;
this code is on jbutton click&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #666666;"&gt;JFileChooser jfile=new JFileChooser();&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        jfile.setFileSelectionMode(jfile.FILES_ONLY);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;       int a=jfile.showOpenDialog(null);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        if(a==jfile.APPROVE_OPTION)&lt;/span&gt; //&lt;span style="color: silver;"&gt;that is for ok or yes selection&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;{&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        String getme=jfile.getSelectedFile().toString();&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        jLabel1.setText("You Have Selected "+getme);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        }&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-1761686190847065524?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/rkQr6iWH4H0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/rkQr6iWH4H0/java-swing-simple-open-file-dialog.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/08/java-swing-simple-open-file-dialog.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-4842553207776668196</guid><pubDate>Mon, 17 Aug 2009 04:38:00 +0000</pubDate><atom:updated>2009-09-16T00:16:35.728-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">jframe</category><category domain="http://www.blogger.com/atom/ns#">thread</category><category domain="http://www.blogger.com/atom/ns#">swing</category><category domain="http://www.blogger.com/atom/ns#">maximize</category><category domain="http://www.blogger.com/atom/ns#">minimize</category><title>simple minimize maximize swing jframe</title><description>&lt;img src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" style="height: 113px; width: 129px;" /&gt;&lt;br /&gt;
we can maximize and mizimize a java jframe&lt;br /&gt;
by simply this code&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_vklrZBTlzOo/Sq89s8Ad4-I/AAAAAAAAAJM/MUljmaa8-u4/s1600-h/max+min.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://2.bp.blogspot.com/_vklrZBTlzOo/Sq89s8Ad4-I/AAAAAAAAAJM/MUljmaa8-u4/s320/max+min.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;span style="color: #ff6666;"&gt;JavawindowmaxminApp.&lt;span style="color: silver;"&gt;getApplication()&lt;/span&gt;&lt;/span&gt;&lt;span style="color: silver;"&gt;.getMainFrame().setState&lt;/span&gt;&lt;br /&gt;
(&lt;span style="color: #ff6666;"&gt;JavawindowmaxminApp&lt;/span&gt;&lt;span style="color: silver;"&gt;.&lt;span style="color: yellow;"&gt;getApplication().getMainFrame().ICONIFIED);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
the read highlighted is java application name iconified is int type and it sets jframe to minimize.&lt;br /&gt;
you can download full source code from here&lt;br /&gt;
&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/java%20max%20min%20app.rar"&gt;Source Code&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-4842553207776668196?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/zt1CNQUx354" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/zt1CNQUx354/simple-minimize-maximize-swing-jframe.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_vklrZBTlzOo/Sq89s8Ad4-I/AAAAAAAAAJM/MUljmaa8-u4/s72-c/max+min.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/08/simple-minimize-maximize-swing-jframe.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-5565496555981004818</guid><pubDate>Wed, 12 Aug 2009 10:35:00 +0000</pubDate><atom:updated>2009-09-16T00:17:13.432-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">java</category><category domain="http://www.blogger.com/atom/ns#">swing</category><category domain="http://www.blogger.com/atom/ns#">DefaultListModel()</category><category domain="http://www.blogger.com/atom/ns#">add</category><category domain="http://www.blogger.com/atom/ns#">jlist</category><title>Swing Simplest Jlist in java</title><description>&lt;a href="http://www.hotlinkfiles.com/files/2738491_bucqv/jlistproperties.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" style="height: 144px; width: 108px;" /&gt;&lt;/a&gt;&lt;br /&gt;
swing jlist is not similar to awt list..i create it as follows first of all do as in the image then i have declared DefaultListModel as dlm instance varible (class level) there after the following is the code&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_vklrZBTlzOo/Sq9B4sVgygI/AAAAAAAAAJU/1GRWFntsbTk/s1600-h/jlost.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_vklrZBTlzOo/Sq9B4sVgygI/AAAAAAAAAJU/1GRWFntsbTk/s320/jlost.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
on button click&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;dlm=new DefaultListModel()
jList1.setModel(dlm);
for(int x=0;x&amp;lt;17;x++)
{
dlm.add(x, "i am "+x);
if(x==16){
dlm.add(17,"www.proamrishwa.blogspot.com");
}
else
{
//keep visiting www.proamrishwa.blogspot.com
}

}&lt;/pre&gt;and i got the following results&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
you can download full source code from here&lt;br /&gt;
&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/Jlist.rar"&gt;Source code&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-5565496555981004818?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/MUsaOC-E6r0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/MUsaOC-E6r0/swing-simplest-jlist-in-java.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_vklrZBTlzOo/Sq9B4sVgygI/AAAAAAAAAJU/1GRWFntsbTk/s72-c/jlost.png" height="72" width="72" /><feedburner:origLink>http://proamrishwa.blogspot.com/2009/08/swing-simplest-jlist-in-java.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-1194770051899231225</guid><pubDate>Wed, 12 Aug 2009 04:29:00 +0000</pubDate><atom:updated>2009-09-16T00:17:46.143-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">swing</category><category domain="http://www.blogger.com/atom/ns#">jdialog</category><category domain="http://www.blogger.com/atom/ns#">messagebox.java</category><category domain="http://www.blogger.com/atom/ns#">joptionpane</category><title>A Simple MessageBox in java</title><description>&lt;img src="http://techreviews.in/wp-content/uploads/2009/01/java-logo_svg-a.jpg" style="height: 117px; width: 112px;" /&gt;MessageBox in java....&lt;br /&gt;
here is the simplest code from which you can create a message box in java similar to .net or...&lt;br /&gt;
i have used swing for that ,joptionpane and jdialog  as instance variable(class level)&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #666666;"&gt;jopan=new JOptionPane("Hi");&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        Object[] options =new String[] {"Ok", "Cancel"};&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        jopan.setOptions(options);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        jdial=jopan.createDialog("www.proamrishwa.blogspot.com");&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        jdial.show();&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        String mtr=jopan.getValue()+"";&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        System.out.println(mtr);&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        if(mtr.equalsIgnoreCase("Ok")){&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;            jLabel1.setText("hi I am ok");&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        }&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        else if(mtr.equalsIgnoreCase("Cancel"))&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        {&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;             jLabel1.setText("hi I am cancel");&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        }&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        else&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        {&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;            //please keep visiting mine website...&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;            //www.proamrishwa.blogspot.com&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #666666;"&gt;        }&lt;/span&gt;&lt;br /&gt;
jopan is instance of joptionpane and jdial is instance of jdialog&lt;br /&gt;
&lt;br /&gt;
here is the pic below&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_vklrZBTlzOo/Sq9DxyDBlmI/AAAAAAAAAJc/LkTyulMWJ4s/s1600-h/mesgae.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_vklrZBTlzOo/Sq9DxyDBlmI/AAAAAAAAAJc/LkTyulMWJ4s/s320/mesgae.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
You can download the full source code here it&lt;br /&gt;
&lt;a href="http://cid-534d173c70d52d24.skydrive.live.com/self.aspx/My%20java/simple%20msgbox.rar"&gt;Source code&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-1194770051899231225?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/UOpDZnRUGjw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/UOpDZnRUGjw/simple-messagebox-in-java.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_vklrZBTlzOo/Sq9DxyDBlmI/AAAAAAAAAJc/LkTyulMWJ4s/s72-c/mesgae.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/08/simple-messagebox-in-java.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-6969702927755804722</guid><pubDate>Sat, 11 Jul 2009 06:28:00 +0000</pubDate><atom:updated>2009-08-11T21:16:46.982-07:00</atom:updated><title>Sholay Gabbar dialog with Nokia and sambha</title><description>Sholay Gabbar dialog with Nokia and sambha&lt;br /&gt;&lt;a href="http://www.hotlinkfiles.com/files/2664985_wi5hw/gabbarwitnnokia1.amr"&gt;Download Now Gabbar 1&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.hotlinkfiles.com/files/2664986_w8lac/gabbarwithnokia2.amr"&gt;Download Now Gabbar 2&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: right;"&gt;&lt;br /&gt;&lt;img src="http://www.hotlinkfiles.com/files/2665003_zm2uw/gabbar.png" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;please post your comments thank you&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-6969702927755804722?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/zfVQt9XGFkA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/zfVQt9XGFkA/sholay-gabbar-dialog-with-nokia-and.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/07/sholay-gabbar-dialog-with-nokia-and.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-6819652601865489652</guid><pubDate>Tue, 30 Jun 2009 07:01:00 +0000</pubDate><atom:updated>2009-06-30T00:44:11.637-07:00</atom:updated><title>Vista Passion</title><description>&lt;img style="width: 597px; height: 416px;" src="http://www.hotlinkfiles.com/files/2642486_1kyad/vis.png" /&gt;&lt;br /&gt;One day Os is too on the web check out here,how!&lt;br /&gt;&lt;a href="javascript:window.open('http://www.hotlinkfiles.com/files/2642487_ujab0/vistapassion.html','vista')"&gt;Click Here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-6819652601865489652?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/m-SjuJwz8sQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/m-SjuJwz8sQ/vista-passion.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/06/vista-passion.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-5251127461767186457</guid><pubDate>Thu, 21 May 2009 06:32:00 +0000</pubDate><atom:updated>2009-06-18T02:06:21.650-07:00</atom:updated><title>Pimp my search Unleashed...</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_vklrZBTlzOo/ShT5Fxl_LyI/AAAAAAAAAGw/0kRIbDeVI5I/s1600-h/ppsearch.GIF"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px; height: 166px;" src="http://1.bp.blogspot.com/_vklrZBTlzOo/ShT5Fxl_LyI/AAAAAAAAAGw/0kRIbDeVI5I/s320/ppsearch.GIF" alt="" id="BLOGGER_PHOTO_ID_5338165335948209954" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;www.pimpmysearch.com is a website which is ditto similar to Your Favorite Search Engine "Google" but pimpmysearch has a little it difference  you can customize its logo as you wish ...&lt;br /&gt;I inspected their website and found how the logo changes on their website..&lt;br /&gt;i found that they ..post the input name to&lt;br /&gt;&lt;embed src="http://www.hotlinkfiles.com/files/2614535_guxrz/SN_300x250_Amity_Uni_7aprl09.swf" width="324" height="258"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;http://images.pimpmysearch.com/logo.php?gname=proamrishwa&lt;br /&gt;&lt;/span&gt;and generate image in responce i dont know what the server does ..&lt;br /&gt;using this information i too created my custom google image&lt;br /&gt;here is the link ..i am providing you to download..just double click the file and enter your name&lt;br /&gt;('or what ever u want ')and press submit .&lt;br /&gt;&lt;br /&gt;&lt;a href="javascript:open('http://www.hotlinkfiles.com/files/2610682_5spfm/pimpmysearchmycustom_2_.html')"&gt;Download Here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-5251127461767186457?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/caYzWmGTwqA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/caYzWmGTwqA/pimp-my-search-unleashed.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_vklrZBTlzOo/ShT5Fxl_LyI/AAAAAAAAAGw/0kRIbDeVI5I/s72-c/ppsearch.GIF" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2009/05/pimp-my-search-unleashed.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-256593006311796893</guid><pubDate>Wed, 12 Nov 2008 16:50:00 +0000</pubDate><atom:updated>2009-06-21T23:10:40.983-07:00</atom:updated><title>MsnSearchPerkGenerator</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_vklrZBTlzOo/Sj8X3JBJClI/AAAAAAAAAHE/KrrT6axTiWw/s1600-h/promo-backtoschool-20090608.jpg"&gt;&lt;a href="http://store.apple.com/us/browse/campaigns/back_to_school?cid=WWW-NAUS-BTS20090507-00032"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 236px; height: 155px;" src="http://3.bp.blogspot.com/_vklrZBTlzOo/Sj8X3JBJClI/AAAAAAAAAHE/KrrT6axTiWw/s320/promo-backtoschool-20090608.jpg" alt="" id="BLOGGER_PHOTO_ID_5350021118420388434" border="0" /&gt;&lt;/a&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_vklrZBTlzOo/SRsJ5gYUaDI/AAAAAAAAAFM/SjO1ze6yKXc/s1600-h/subpageLogo.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 274px; height: 59px;" src="http://4.bp.blogspot.com/_vklrZBTlzOo/SRsJ5gYUaDI/AAAAAAAAAFM/SjO1ze6yKXc/s320/subpageLogo.png" alt="" id="BLOGGER_PHOTO_ID_5267815072689055794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To earn value for your searches and join the SearchPerks! promotion you must have Internet Explorer 6.0 or higher to participate. Copy this URL and paste it into Internet&lt;br /&gt;&lt;p&gt;Sign up for SearchPerks! and start earning tickets towards exciting prizes whenever you search the Web – up to 25 tickets per day. It’s free, easy to use, and your tickets accumulate as fast as you can search. &lt;/p&gt;   &lt;p&gt;And because SearchPerks! is brought to you by Microsoft Live Search, you can count on rich, comprehensive search results.&lt;/p&gt;   &lt;p&gt;Be sure to sign up before the registration deadline on December 31, 2008—the sooner you sign up, the more opportunity you have to earn tickets!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.getsearchperks.com/"&gt;Above Data Is From Following WebSite&lt;/a&gt;&lt;br /&gt;For Quick Tickets A program named as MsnSearchGenerator is provided by anonyomous rogrammer i am providing you the link here &lt;a href="http://zxszhw.blu.livefilestore.com/y1pNt-mDks63y-BjKwnewxxmH8YHotTVl_9ZPx9G3trr9KlydpRD1Q5BZD_-eQeoOoO2bUF8i7exOo/MsnSearchPerkGenerator.rar?download"&gt;Download&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a&gt;Open Two Tabs Before Using this program&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;a&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-256593006311796893?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/MUAk8becKiw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/MUAk8becKiw/msnsearchperkgenerator.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_vklrZBTlzOo/Sj8X3JBJClI/AAAAAAAAAHE/KrrT6axTiWw/s72-c/promo-backtoschool-20090608.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/11/msnsearchperkgenerator.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-333163347306795953</guid><pubDate>Mon, 10 Nov 2008 03:27:00 +0000</pubDate><atom:updated>2008-11-09T19:31:08.058-08:00</atom:updated><title>Bhotu Shah {NEW FUNNY} - Remake of Aashiq Banaya Aapne</title><description>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/BC1A_C9L9V8&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/BC1A_C9L9V8&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A Nice Movie&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-333163347306795953?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/J3119OlHYKQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/J3119OlHYKQ/bhotu-shah-new-funny-remake-of-aashiq.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/11/bhotu-shah-new-funny-remake-of-aashiq.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-7996283485174117753</guid><pubDate>Fri, 19 Sep 2008 03:49:00 +0000</pubDate><atom:updated>2008-09-18T21:04:54.729-07:00</atom:updated><title>F-Secure Mobile Anti-Virus</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_vklrZBTlzOo/SNMkPrFx5OI/AAAAAAAAAE8/bJPurt3wO18/s1600-h/untitled.GIF"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_vklrZBTlzOo/SNMkPrFx5OI/AAAAAAAAAE8/bJPurt3wO18/s320/untitled.GIF" alt="" id="BLOGGER_PHOTO_ID_5247577842500363490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;F-Secure Mobile Security&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;div style="text-align: left;"&gt;F-Secure Mobile Security is a software product that protects data stored&lt;br /&gt;in your S60 device against malicious code attacks and monitors incoming&lt;br /&gt;and outgoing connections and protects the device from network intrusion&lt;br /&gt;attempts.&lt;br /&gt;F-Secure Mobile Security scans all files for viruses automatically when&lt;br /&gt;they are saved, copied, downloaded, synchronized or otherwise modified.&lt;br /&gt;All infected files are immediately quarantined to protect all other data on&lt;br /&gt;the device. The automatic scanning happens transparently on the&lt;br /&gt;background.&lt;br /&gt;To work effectively, antivirus software requires an always up-to-date virus&lt;br /&gt;definition database. F-Secure Mobile Security retrieves the latest virus&lt;br /&gt;definition databases automatically.&lt;br /&gt;&lt;br /&gt;See http://mobile.f-secure.com/devices/ for a full&lt;br /&gt;list of supported devices.&lt;br /&gt;&lt;br /&gt;For nokia 3230 and  6260&lt;br /&gt;&lt;br /&gt;Download a free 30-day trial. Here&lt;br /&gt;&lt;a href="http://mobile.f-secure.com/nokia/mp/anti-virus_nmp.sis" onmousedown="alert('Redirecting You to Download Location')"&gt;Download&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-7996283485174117753?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/n7SwS7y5rRc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/n7SwS7y5rRc/f-secure-mobile-anti-virus.html</link><author>noreply@blogger.com (amrishwa)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_vklrZBTlzOo/SNMkPrFx5OI/AAAAAAAAAE8/bJPurt3wO18/s72-c/untitled.GIF" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/09/f-secure-mobile-anti-virus.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-6635262723919956902</guid><pubDate>Tue, 02 Sep 2008 16:13:00 +0000</pubDate><atom:updated>2008-09-02T09:15:14.682-07:00</atom:updated><title /><description>&lt;iframe allowtransparency="true" scrolling="yes" width="610" frameborder="0" src="http://indiarailinfo.com" height="580"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-6635262723919956902?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/DIoiwIbuTBo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/DIoiwIbuTBo/blog-post.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/09/blog-post.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-3270927657138673252</guid><pubDate>Sun, 29 Jun 2008 13:25:00 +0000</pubDate><atom:updated>2008-06-30T04:00:51.102-07:00</atom:updated><title>Jaipur </title><description>&lt;embed src="http://img166.imageshack.us/slideshow/smilplayer.swf" width="426" height="320" name="smilplayer" id="smilplayer" bgcolor="FFFFFF" menu="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="id=img166/6461/1214745193ti4.smil"/&gt;
&lt;br /&gt;&lt;br/&gt;&lt;a href="http://imageshack.us/slideshow/index.php"&gt;All Images are Of&amp;#174;Jaipur &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-3270927657138673252?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/4mF-2tKBKVs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/4mF-2tKBKVs/jaipur.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/06/jaipur.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-970913126087178701</guid><pubDate>Thu, 26 Jun 2008 12:02:00 +0000</pubDate><atom:updated>2008-06-26T21:26:46.711-07:00</atom:updated><title>J2ME (Java 2 Mobile Edition) Presentation</title><description>hi friends this is the presentation we presented in our college&lt;br /&gt;&lt;br /&gt;&lt;embed id="VideoPlayback" style="width: 400px; height: 326px;" allowfullscreen="true" src="http://video.google.com/googleplayer.swf?docid=-1800005580374407385&amp;amp;hl=en&amp;amp;fs=true" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Please post your comments Thanks for your precious time&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-970913126087178701?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/9Lq0uRJMzco" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/9Lq0uRJMzco/j2me-java-2-mobile-edition-presentation.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">4</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/06/j2me-java-2-mobile-edition-presentation.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-536956947802461735</guid><pubDate>Sun, 08 Jun 2008 00:57:00 +0000</pubDate><atom:updated>2008-06-24T04:05:28.033-07:00</atom:updated><title>Anti Booters</title><description>&lt;img src="file:///C:/Documents%20and%20Settings/Administrator/Desktop/0000000001_000000000000000301318.jpg" alt="" /&gt;&lt;marquee behavior="alternate" width="90" height="19"&gt;Booters&lt;/marquee&gt;&lt;br /&gt;when you sign in to yahoo messenger and chat in rooms some body boots you (opening up multiple im windows ) this cause a high pressure  on bandwidth and it drops the connection and you get disconnected  .This are some evil games of evil people they boot  for fun they dont have any type of enginnering evolved in this evil game they just download a booter from any website and fill the id of target and start .they dont know what is going behind the evil program.&lt;br /&gt;well friends i really dont like thease booters  .so as a booter there is a antibooter too not so many&lt;br /&gt;but i am providing a link for that so you can download IT&lt;br /&gt;&lt;br /&gt;&lt;iframe marginheight="0" marginwidth="0" style="border: 1px solid rgb(221, 229, 233); margin: 3px; padding: 0pt; width: 240px; height: 66px; background-color: rgb(255, 255, 255);" src="http://cid-534d173c70d52d24.skydrive.live.com/embedrowdetail.aspx/My%20programs/AntiBoot.zip" scrolling="no" frameborder="0"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-536956947802461735?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/KEWNQV8mEhk" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/KEWNQV8mEhk/booters.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/06/booters.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-1031683413354345913</guid><pubDate>Mon, 19 May 2008 02:00:00 +0000</pubDate><atom:updated>2009-06-21T23:47:25.097-07:00</atom:updated><title>Tamatar the Game</title><description>&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;Its a dot net project a game just for fun a nice car racer game for free ,think u will like it. prerequisite are:-&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;1.(.net platform)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;2.minimum 128 mb of RAM&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.games.com/game/farm-frenzy-pizza-party/"&gt;&lt;img src="http://www.hotlinkfiles.com/files/2627278_nlhtq/cow_1.jpeg" width="268" height="167" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;embed src="http://www.hotlinkfiles.com/files/2627264_fm33s/imgad.swf" width="230" height="188"&gt;&lt;/embed&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;just download it and run the setup provided in the file &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;if you like this game please post your comments as well a advice &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;thanks a lot for giving your precious time&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;Author Amrish sharma&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;you can download this game here just below the link&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;iframe marginheight="0" marginwidth="0" style="border: 1px solid rgb(221, 229, 233); margin: 3px; padding: 0pt; width: 240px; height: 26px; background-color: rgb(255, 255, 255);" src="http://cid-534d173c70d52d24.skydrive.live.com/embedrow.aspx/My%20programs/Tamatar%20The%20Game.zip" scrolling="no" frameborder="0"&gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;ENjoy!!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-1031683413354345913?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/U0FJ2PECDhc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/U0FJ2PECDhc/hotel-manegement-system.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/05/hotel-manegement-system.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-8127539364179606902</guid><pubDate>Sat, 03 May 2008 03:39:00 +0000</pubDate><atom:updated>2009-05-23T00:31:32.648-07:00</atom:updated><title>File Attribute viewer</title><description>&lt;strong&gt;File Attribute viewer&lt;/strong&gt;&lt;br /&gt;&lt;div align="justify"&gt;This software will show any type of property of a file for example a file should have a property hidden,readonly ,archieve etc .And also through this program you can set property of a file&lt;/div&gt;&lt;div align="justify"&gt;In these days data sharing is too easy through USB Drive ex. pendrives ,Did you think that a pendrive should contains a virus or malicious program which should be hidden on pendrive &lt;/div&gt;&lt;div align="justify"&gt;if you open pendrive directly your system get infected with malicious programs . Through this program no need to open drive just select drive from combobox or from folder browse it will display all files hidden or normal . If you think some thing malicious in your pendrive just press option and press remove all attributes and Quit then delete the selected file safely thease files didnt go to recyclebin too.&lt;/div&gt;&lt;div align="justify"&gt;therefore the malicious program did nt get back while system restore .And a easy search functionaly in it if you work on too many files with this application do not need to remember the files just fill the 1st 3 or 4 letters in find box and press find (case sensitive) it will search that files in seconds&lt;br /&gt;&lt;br /&gt;I have added two new features in this program i is service explorer and second is process explorer it is usefull when your computer is compromised with a virus it helps to remove those malicious service and program..&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;This software is usefull for security..&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;Author --Amrish sharma&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Main window Screen Shot&lt;br /&gt;&lt;br /&gt;&lt;iframe style="border: 1px solid rgb(221, 229, 233); margin: 3px; padding: 0px; width: 240px; height: 66px; background-color: rgb(255, 255, 255);" marginwidth="0" marginheight="0" src="http://cid-534d173c70d52d24.skydrive.live.com/embedrowdetail.aspx/My%20programs/Program%20pictures/Main%20winodw.gif" onmouseout="hem();" onmouseover="getconnec();" scrolling="no" frameborder="0"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;div id="oi" style="position: absolute; left: 358px; top: 248px; width: 51px; height: 21px;"&gt;&lt;!--&lt;a href="#" onmouseout="hem()" onmouseover="getconnec();"&gt;&lt;/a&gt;--&gt; &lt;/div&gt;&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;document.onmousemove = getMousePosition;&lt;br /&gt;var isIE = document.all ?true:false;&lt;br /&gt;function getMousePosition(e) &lt;br /&gt;{&lt;br /&gt;&lt;br /&gt; var _x;&lt;br /&gt; var _y;&lt;br /&gt; if (!isIE) {&lt;br /&gt;  _x = e.pageX;&lt;br /&gt;  _y = e.pageY;&lt;br /&gt; }&lt;br /&gt; if (isIE) {&lt;br /&gt;  _x = event.clientX + document.body.scrollLeft;&lt;br /&gt;  _y = event.clientY + document.body.scrollTop;&lt;br /&gt; }&lt;br /&gt; posX = _x;&lt;br /&gt; posY = _y;&lt;br /&gt; &lt;!--document.getElementById('mss').innerHTML="             "+posX+" "+posY;--&gt;&lt;br /&gt; }&lt;br /&gt; function getconnec()&lt;br /&gt; {&lt;br /&gt; document.getElementById('mss').style.visibility="visible";&lt;br /&gt; document.getElementById('mss').style.left=posX+'px';&lt;br /&gt; document.getElementById('mss').style.top=posY+'px';&lt;br /&gt; }&lt;br /&gt; function hider()&lt;br /&gt; {&lt;br /&gt; document.getElementById('mss').style.visibility="hidden";&lt;br /&gt; }&lt;br /&gt; function dwn()&lt;br /&gt; {&lt;br /&gt; var g=document.getElementById('mss').style.top;&lt;br /&gt; var f=document.getElementById('mss').style.left;&lt;br /&gt; document.getElementById('searchspace').style.top=g+99+'px';&lt;br /&gt; document.getElementById('searchspace').style.left=f+'px';&lt;br /&gt; document.getElementById('searchspace').style.visibility="visible";&lt;br /&gt; var getf=document.getElementById('tware').value;&lt;br /&gt; var ip="http://www.google.co.uk/search?hl=en&amp;q="+getf;&lt;br /&gt; &lt;!--window.location=ip;--&gt;&lt;br /&gt; document.getElementById('gol').src=ip;&lt;br /&gt; }&lt;br /&gt; function hem()&lt;br /&gt; {&lt;br /&gt; document.getElementById('mss').style.visibility="hidden";&lt;br /&gt; }&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;div id="mss" style="position: absolute; visibility: hidden; left: 187px; top: 46px; width: 628px; height: 439px;"&gt;&lt;br /&gt;&lt;img src="http://2i2v1w.blu.livefilestore.com/y1pwGt25pb3rJKFvdm44Q0lFQ17dCcdALA9OzN2KuXp9vmILBXzlP7UI1pCGxpMUkmPEY9pH-qpMh0/Main%20winodw.gif" width="621" height="431" /&gt;&lt;/div&gt;&lt;br /&gt;&lt;!--searchspace div--&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--searchspace div--&gt;&lt;br /&gt;Download It Here&lt;br /&gt;&lt;iframe scrolling="no" marginheight="0" marginwidth="0" frameborder="0" style="width:240px;height:66px;margin:3px;padding:0;border:1px solid #dde5e9;background-color:#ffffff;" src="http://cid-534d173c70d52d24.skydrive.live.com/embedrowdetail.aspx/My%20programs/File%20attribute%20viewer/File%20Attribute%20Viewer.zip"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-8127539364179606902?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/nsMrVwEinLs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/nsMrVwEinLs/file-attribute-viewer.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/05/file-attribute-viewer.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-955774811161421339.post-6223282624912805433</guid><pubDate>Fri, 02 May 2008 01:57:00 +0000</pubDate><atom:updated>2009-06-29T23:51:58.462-07:00</atom:updated><title>BIT TORRENT Gift For Free Lovers</title><description>&lt;strong&gt;BITTORREN:-BitTorrent is a &lt;/strong&gt;&lt;a class="mw-redirect" title="Peer-to-peer file sharing" href="http://en.wikipedia.org/wiki/Peer-to-peer_file_sharing"&gt;&lt;strong&gt;peer-to-peer file sharing&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; (P2P) &lt;/strong&gt;&lt;a title="Communications protocol" href="http://en.wikipedia.org/wiki/Communications_protocol"&gt;&lt;strong&gt;communications protocol&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;. BitTorrent is a method of distributing large amounts of &lt;/strong&gt;&lt;a title="Data" href="http://en.wikipedia.org/wiki/Data"&gt;&lt;strong&gt;data&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; widely without the original distributor incurring the entire costs of &lt;/strong&gt;&lt;a title="Hardware" href="http://en.wikipedia.org/wiki/Hardware"&gt;&lt;strong&gt;hardware&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;, &lt;/strong&gt;&lt;a title="Internet hosting service" href="http://en.wikipedia.org/wiki/Internet_hosting_service"&gt;&lt;strong&gt;hosting&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;, and &lt;/strong&gt;&lt;a class="mw-redirect" title="Bandwidth" href="http://en.wikipedia.org/wiki/Bandwidth"&gt;&lt;strong&gt;bandwidth&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; resources. Instead, when data is distributed using the BitTorrent protocol, each recipient supplies pieces of the data to newer recipients, reducing the cost and burden on any given individual source, providing &lt;/strong&gt;&lt;a title="Redundancy" href="http://en.wikipedia.org/wiki/Redundancy"&gt;&lt;strong&gt;redundancy&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; against system problems, and reducing dependence on the original distributor.&lt;br /&gt;The protocol is the brainchild of programmer &lt;/strong&gt;&lt;a title="Bram Cohen" href="http://en.wikipedia.org/wiki/Bram_Cohen"&gt;&lt;strong&gt;Bram Cohen&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;, who designed it in April 2001 and released a first implementation on &lt;/strong&gt;&lt;a title="July 2" href="http://en.wikipedia.org/wiki/July_2"&gt;&lt;strong&gt;2 July&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; &lt;/strong&gt;&lt;a title="2001" href="http://en.wikipedia.org/wiki/2001"&gt;&lt;strong&gt;2001&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;a title="" href="http://en.wikipedia.org/wiki/BitTorrent_%28protocol%29#cite_note-BC-0"&gt;&lt;strong&gt;[1]&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; It is now maintained by Cohen's company &lt;/strong&gt;&lt;a title="BitTorrent, Inc." href="http://en.wikipedia.org/wiki/BitTorrent%2C_Inc."&gt;&lt;strong&gt;BitTorrent, Inc.&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;&lt;strong&gt;Usage of the protocol accounts for significant traffic on the Internet, but the precise amount has proven difficult to measure.&lt;br /&gt;There are numerous compatible &lt;/strong&gt;&lt;a title="BitTorrent client" href="http://en.wikipedia.org/wiki/BitTorrent_client"&gt;&lt;strong&gt;BitTorrent clients&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;, written in a variety of &lt;/strong&gt;&lt;a title="Programming language" href="http://en.wikipedia.org/wiki/Programming_language"&gt;&lt;strong&gt;programming languages&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;, and running on a variety of &lt;/strong&gt;&lt;a class="mw-redirect" title="Platform (computing)" href="http://en.wikipedia.org/wiki/Platform_%28computing%29"&gt;&lt;strong&gt;computing platforms&lt;a href="http://www.liutilities.com/products/campaigns/adv/rb/cnet/lb/internet/"&gt;&lt;br /&gt;&lt;img src="http://www.hotlinkfiles.com/files/2642225_doomu/freescan.gif" width="637" height="93" /&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;.&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;I will listing some Good Of them&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;1.Bittorrent&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;2.utorrent&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;and many more but i only use Bittorrent Client I thnk it is the Best one &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;you can download anything u want from this client for free but if u download u have to upload too it is known as seeding evey people use this protocol has to seed some what they downloaded&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;so this protocol becomes fast as compared to HTTP and download speed becomes faster&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;If u want to download some thing throught this protcol u need a Bittorrent client and a Torrent File for Ex try googling "cricket 2007 torrent" you will find several links some links are the paid one and some are free download this files they are just 50 to 60 kb not more than that and double click on them and you are ready to download cricket 07 free .&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;Bittorrent is also used for pirated contents like cracks,keygens,serials you will find that easily there .&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;I am going to list some Paid and list Torrent here &lt;/strong&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;strong&gt;Paid Site -Need Registration and Money to I dont like them&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;strong&gt;1.www.fulldownload.ws&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;strong&gt;2.www.fullrelease.com&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;strong&gt;and there are many more ..&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 153);"&gt;&lt;strong&gt;Free sites -I like them a lot &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;1.www.mininova.com&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;2.www.piratebay.org&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;3.www.torrentportal.com&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;4.www.torrentz.ws&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;5.www.zoozle.org&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;6.www.isohunt.com&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;7.www.sumotorrent.com&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;and a lot more ...&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;If you want pirated content it is the safe place but take care these file sometimes contains trojan virus often not may be 100 out of 1&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;you can find everything here free serials and licence of software latest films and music &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;iframe marginheight="0" marginwidth="0" style="border: 1px solid rgb(221, 229, 233); margin: 3px; padding: 0pt; width: 240px; height: 26px; background-color: rgb(255, 255, 255);" src="http://cid-534d173c70d52d24.skydrive.live.com/embedrow.aspx/Torrents" scrolling="no" frameborder="0"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 153);"&gt;&lt;br /&gt;&lt;strong&gt;I will provide you some good links for softwares ,cracks and keygen&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;in my next post&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 204, 255);"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;p&gt;&lt;a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/Technorat"&gt;&lt;img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" alt="Add to Google Reader or Homepage"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/955774811161421339-6223282624912805433?l=proamrishwa.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Technorat/~4/ahSry1MPoGA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/Technorat/~3/ahSry1MPoGA/bit-torrent-gift-for-free-lovers.html</link><author>noreply@blogger.com (amrishwa)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://proamrishwa.blogspot.com/2008/05/bit-torrent-gift-for-free-lovers.html</feedburner:origLink></item></channel></rss>
