Sandeep & Vicky’s Archive » 2009 » October

Archive for October, 2009

13
Oct

How to Earn online through your Web site

   Posted by: admin    in Uncategorized

Many youngsters these days want to earn online, but hardly anyone knows how to do that.

It is actually very simple, if some one guides you in the entire process, otherwise it is very difficult. You can earn online by making your own web site and then advertising through your site. You can advertise in many ways, some of the most well known form of online advertising is google adsense, yahoo publisher, infolinks and many more.

The process of earning online

A typical process of earning online is as follows

  1. Register your domain name and web space for that domain.
  2. Build your site (Typically a CMS driven site) through which you can update your content daily. A blog like the current site or a forum (Click to see our forum) are the best examples of such a site
  3. Upload Good content on your site.
  4. Integrate or Place advertisements on your Web site. (Please note that anyone would place ads on your site only if your site is getting good number of hits and hits will come only if your site has good quantity as well as quality content)
  5. Get paid for the ads on your site.
  6. Thats it

The best part is that it costs hardly anything. People are making millions of money per month through the above process and guess what!!!! they hardly invested few dollars in the process. That is the Power of IT.

You can read more success stories by following this link : https://www.google.com/adsense/static/en_US/Success.html

Even you can have a success story like theirs. Believe me it can seriously get you millions (if not millions then at least thousands) just at the cost of few bucks.

If you are interested in earning online, then please contact us. We will guide you in the entire process.

You can contact us on the following numbers (India) : (+91) 9892388510, 9967433963, 9702115577, 9611191486

OR drop us an e mail. Click here to get our Contact details

Thanks

Vicky Jain

vickyjain05@gmail.com, vicky@convergenceservices.in

www.convergenceservices.in

9
Oct

How to alter the default focus option in a JOptionPane?

   Posted by: admin    in java

I was trying to set default focus to a textfield which was placed in a joptionpane, but it wast working with the following code

cvendor.requestFocus();

whereas the same code worked perfectly when the textfield was placed in a jpanel. On research i found that the default focus in a joptionpane is always on the OK button and it cannot be changed statically, it can only b changed during runtime using the Runnable interface. Here is the code that did the trick

javax.swing.SwingUtilities.invokeLater(new Runnable() {//<—–add
public void run() { cvendor.requestFocus(); }});//<—-add

nn=JOptionPane.showConfirmDialog(null,Jop,”Please enter details”,JOptionPane.CANCEL_OPTION,JOptionPane.QUESTION_MESSAGE);

kool na………..

Related Posts with Thumbnails