Skip to main content

Posts

Showing posts from January, 2018
      22  Easy ways to Earn money 1. Earn from PTC sites If you are trying to earn money online & need only small extra income less than $200 (Rs.12,000) then PTC sites are the best way to start.  Here you need to click & read the advertisements for 10 to 3o seconds & get paid for each & every advertisement you view. There are many sites where you can register & make money by reading ads. All sites are free & there is no investment at all. You can check this   list of 5 best PTC sites , signup & start earning. 2. Earn with GPT Sites To add more income, you can also join GPT sites where you can earn money by taking small surveys, watching videos, playing games & doing many more activities.We have worked on number of GPT sites but we will recommend only 3 sites which pays their member on time. You can receive your payment by PayPal, cheque or bank transfer. Check GPT sites here . 3. Become a Captcha Solver If you have more time...
                            JAVA AWT Example to learn package com.mission; import java.awt.Button; import java.awt.CardLayout; import java.awt.Color; import java.awt.FlowLayout; import java.awt.Frame; import java.awt.GridLayout; import java.awt.Label; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.event.MouseMotionListener; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; import javax.swing.plaf.metal.MetalBorders.TextFieldBorder; public class AWTDemo extends Frame implements WindowListener,MouseListener,MouseMotionListener,KeyListener{ public AWTDemo() { addWindowListener(this); addMouseListener(this); addMouseMotionListener(this); addKeyListener(this);     setTitle("My Application");     setSize(400, 400);     setLayout(new FlowLayout());     s...