Monday, May 30, 2011

Kamus Loghat Kelantan

1. nyo - kelapa
2. nyelo - jendela.
3. bekwoh - kenduri

fifa 07 cheat and tip from lagendary player

1. Easy Free Kick:
When you get free kick Outside and near the Penalty Area , Center the right or left goal's post and wait until auto kick ( about 7 second)..or you can click shoot key (D key) as fast as possible...9/10 probability you get GOOOOLLL


2. best corner

When u get corner free kick, try to pass to nearest player, by calling the player ( press C) then pass (S)..after u pass it to another player, press loop as long as poosible then release, after that press kick (D) in order another player heading or fast kick

3. best run forward
Try to control ball by speed and steady, i mean dont always speed too long by one player only, try to slow down then speed..this will give u more control ball

3. best protect ball

Try to protect your ball from your opponent by back facing opponent player each time you want to protect the ball

Monday, May 23, 2011

cheat for red alert 2

Generate auto promoted army / unit /soldier /tank:

1. Fire a little bit your own barrack or war factory by one of your unit. ( hold ctrl key and click fire), but do not totally crash your own building...after that stop firing.


2. Simultaneously select your engineer and spy. Then use (ctrl+z+mouse) key to auto point engineer and spy to go into the damage building (barrack or war factory). But make sure engineer must in front of spy.

3. Then as usual, generate your units. Your new unit will be promoted automatically ..that's all

play fifa07 or play red alert 2 or others online.

download and install gameranger software....google it.

FIFA 07 VERY SLOW AT MENU

to solve this problem try this:

1. start

2. type : dxdiag

3. go to sound : adjust to lowest

Forex Tester Is The Best Forex Software Simulation

Until now forex tester is my best tool to simulate my trading strategy since :

1. i can watch the market movement.

2. no need to worry about updated tick data because i can get the latest from the developer site.

3. no need to worry to get 100 percent modelling quality.

auto refresh parent page after close popup page.

1. place this code in child / pop-up page



function refreshParent(){ window.opener.location.href = window.opener.location.href;
if (window.opener.progressWindow) { window.opener.progressWindow.close() }
window.close();
}


2. Place a button to call the above JavaScript function at the bottom of the pop-up window, so when user clicks on the button, it’ll refresh the parent window and closes itself.





<input type=button value=”Close” onClick=”refreshParent();”/>

time to trade in forex (malaysia)

Waktu paling aktif untuk trading ialah

Waktu Malaysia ( +8GMT )

2 :00 pm – 3 :45 pm(paling aktif)

4 :15 pm– 5 :15 pm(aktif)

8 :00 pm – 9 :00 pm(paling aktif)

10 :00 pm – 11 :15 am(paling aktif)

2 :00 am– 3 :15 am(paling aktif)

5 :15 am – 6 :00 am (aktif)

check empty fields and warn user to fill javascript

function check_field()
{

var myField=["lec_name","Name","lec_ic","IC"];
alert(myField.length);

for(x=0; x
{ var z = myField[x];
var y= myField[x+1];

if ( document.form1.elements[z].value =='' || document.form1.elements[z].value==null)
{
alert ("fill "+ y +" !");document.form1.elements[z].focus();return false;
}

x++;
}


}

How to insert new data from table to other table but skip already exist data

This query will skip inserting data from source table that already exist in destination table.

source table : student_ined

destination table : users


insert IGNORE into users (username,password,fullname)
Select studentID as username, student_ic as password, student_name as fullname from student_ined