Maths
Tricks with Numbers
|
|
||
The main intention of this site to provide Engineering information and preparing Engineering students for leadership in their fields in a caring and challenging learning environment.
|
|
||
Data
Type
|
Description
|
Text
|
It can store 255 alphanumeric characters, used for storing data
|
Memo
|
It can hold up to 64,000 characters
|
Number
|
It is used for calculations, can consist of numerical digits
|
Date/ Time
|
Stores a date or time. Consists of 8 bits
|
Currency
|
It is used for monitory values. Consists of 8 bytes.
|
Counter
|
It is numeric value that automatically increment for each record
|
Yes/ No
|
Stores Boolean values
|
OLE Object
|
Stores pictures, graphs and
other binary data. Can consists of 128 MB
|
Field
|
Specifies the fields to be included in the
query
|
Table
|
Specifies which table does the above field
belong to.
|
Sort
|
Specifies the manner in which the query has
to be sorted.
|
Show
|
Specifies whether to display the field or
not
|
Criteria
|
Specifies the criteria of the records to be
shown.
|
import java.awt.Robot; public class MouseClass { public static void main(String[] args) throws Exception { Robot robot = new Robot(); // SET THE MOUSE X Y POSITION robot.mouseMove(300, 550); } }
java code 2:Click the left mouse button:import java.awt.Robot; import java.awt.event.InputEvent; public class MouseClass { public static void main(String[] args) throws Exception { Robot robot = new Robot(); // LEFT CLICK robot.mousePress(InputEvent.BUTTON1_MASK); robot.mouseRelease(InputEvent.BUTTON1_MASK); } }java code 3:
Click the right mouse button:import java.awt.Robot; import java.awt.event.InputEvent; public class MouseClass { public static void main(String[] args) throws Exception { Robot robot = new Robot(); // RIGHT CLICK robot.mousePress(InputEvent.BUTTON3_MASK); robot.mouseRelease(InputEvent.BUTTON3_MASK); } }java code 4:
Click & scroll the mouse wheel:import java.awt.Robot; import java.awt.event.InputEvent; public class MouseClass { public static void main(String[] args) throws Exception { Robot robot = new Robot(); // MIDDLE WHEEL CLICK robot.mousePress(InputEvent.BUTTON3_DOWN_MASK); robot.mouseRelease(InputEvent.BUTTON3_DOWN_MASK); // SCROLL THE MOUSE WHEEL robot.mouseWheel(-100); } }
Human development is about much more than the rise or fall of national incomes. It is about creating an environment in which people can develop their full potential and lead productive, creative lives in accord with their needs and interests. People are the real wealth of nations. Development is thus about expanding the choices people have to lead lives that they value. And it is thus about much more than economic growth, which is only a means—if a very important one—of enlarging people’s choices.