august,10,2011 . death anniversary ni grandPa. miss u lolo :( POEM parA KAi papa Lo. :(



I know wE Are all feeling a little bit sAd,
that we’ve lost our Grandpa, our friend And our dad
togethEr we havE cried an ocEan of tears
As we feel so Empty and hold many fears

but Grandpa would want us to know hE’s in a good placE
and that hE watching us all with a smile on his facE
as we have madE him so proud, As proud as can bE
That hE has raisEd such a beautiful and spEcial family

thinking bAck now I rEally must say
I fEel lucky and privilegEd to havE known Grandpa to this dAy
for in my life, you have played a special part
the memories I will treasure and keep closE to your hEart,. :(

 I lovE my Grandpa with all my hEart and will miss him s0.PApa.Lo. love you.,

yaii.kaluha man saB ko’g lansanG!.

to her.the girl i love in my past :(

naa tana koi uyaB.pero muarg wala ra. daghan.gibuhat.lowbat,mag charge,mag kaon,matulog,or mulaag,wai load, daghan kaau.alibai..LOVE MAN TANA nako.pero gibaliwala lang man ko. :( awp.kapoi na mag sad,.8s enough.its timE to let her gO.to set her free. kung malipai naka sa lain. 8s up to u. and good for you.i am happy for you kong happy ma happy ka sa ilaha.kung happy ka mag chat2,txt2,comment2,sa ila,go. uR free. but one last say,ILOVEYOU .CKLV.my Mii. dili nako.gve up nako.sakit naman.kapoi na manilos.tace care.and GOdbless.thanks sa time nimo last time.thanks for the memory.and thanks for the time u spend. :( iloveyou cress. byeeeee

ganahan ka. mag compute ani.ingun ani kataas?hehehe. dah. pag. i.t pah.hehe. maynalang naai copy paste.nyaha!

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.text.*;

public class Main extends JFrame{

Color black = new Color(0, 0, 0);
Color white = new Color(250, 250, 250);

JLabel sample1JLabel;
JTextField sample1TextField;

JLabel sample2Label;
JTextField sample2TextField;

JLabel totalLabel;
JTextField totalTextField;


JButton computeBT;

Double sum1;
Double sum2;
Double sum3;

public Main(){
createPanels();
}
public void createPanels(){
Container contentPane = getContentPane();
contentPane.setBackground(Color.green);
contentPane.setLayout(null);

sample1JLabel = new JLabel();
sample1JLabel.setBounds(50, 50, 150, 20);
sample1JLabel.setFont(new Font(“Default”, Font.BOLD, 12));
sample1JLabel.setForeground(black);
sample1JLabel.setHorizontalAlignment(JLabel.LEFT);
sample1JLabel.setText(“Number 1:”);
contentPane.add(sample1JLabel);

sample1TextField = new JTextField();
sample1TextField.setBounds(220, 50, 80, 20);
sample1TextField.setFont(new Font(“Default”, Font.BOLD, 12));
sample1TextField.setHorizontalAlignment(JTextField.CENTER);
sample1TextField.setForeground(black);
sample1TextField.setBackground(Color.white);
sample1TextField.setEditable(true);
contentPane.add(sample1TextField);

sample2Label = new JLabel();
sample2Label.setBounds(50, 100, 150, 20);
sample2Label.setFont(new Font(“Default”, Font.BOLD, 12));
sample2Label.setForeground(black);
sample2Label.setHorizontalAlignment(JLabel.LEFT);
sample2Label.setText(“Number 2:”);
contentPane.add(sample2Label);

sample2TextField = new JTextField();
sample2TextField.setBounds(220, 100, 80, 20);
sample2TextField.setFont(new Font(“Default”, Font.BOLD, 12));
sample2TextField.setHorizontalAlignment(JTextField.CENTER);
sample2TextField.setForeground(black);
sample2TextField.setBackground(Color.white);
sample2TextField.setEditable(true);
contentPane.add(sample2TextField);

totalLabel = new JLabel();
totalLabel.setBounds(50, 150, 150, 20);
totalLabel.setFont(new Font(“Default”, Font.BOLD, 12));
totalLabel.setForeground(black);
totalLabel.setHorizontalAlignment(JLabel.LEFT);
totalLabel.setText(“TOTAL:”);
contentPane.add(totalLabel);

totalTextField = new JTextField();
totalTextField .setBounds(220, 150, 80, 20);
totalTextField .setFont(new Font(“Default”, Font.BOLD, 12));
totalTextField .setHorizontalAlignment(JTextField.CENTER);
totalTextField .setForeground(black);
totalTextField .setBackground(Color.white);
totalTextField .setEditable(true);
contentPane.add(totalTextField);


computeBT = new JButton();
computeBT.setBounds(50, 400, 100, 20);
computeBT.setFont(new Font(“Default”, Font.BOLD, 12));
computeBT.setForeground(black);
computeBT.setBackground(Color.white);
computeBT.setText(“Compute”);
computeBT.setHorizontalAlignment(JLabel.CENTER);
contentPane.add(computeBT);
computeBT.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent event){
computeBTActionPerformed(event);
}
}
);


setTitle(“Inventory System”);
setSize(650, 500);
setVisible(true);
setBounds(35,20,960,700);

}
public static void main(String[]args){

Main application = new Main();
application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

public void computeBTActionPerformed(ActionEvent event){
getSum();
}
public void getSum(){


sum1What is this?ouble.parseDouble(sample1TextField.getText());
sum2What is this?ouble.parseDouble(sample2TextField.getText());
totalTextField.setText(“”+(sum1+sum2));


}

}

kung mag I.T mo. ganahan mo mag compute ani?haha.. kung wai copy paste. d ko maka pasar.nyaha! bulgar pabah. :)


import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.text.*;

public class Main extends JFrame{

Color black = new Color(0, 0, 0);
Color white = new Color(250, 250, 250);

JLabel sample1JLabel;
JTextField sample1TextField;

JLabel sample2Label;
JTextField sample2TextField;

JLabel totalLabel;
JTextField totalTextField;


JButton computeBT;

Double sum1;
Double sum2;
Double sum3;

public Main(){
createPanels();
}
public void createPanels(){
Container contentPane = getContentPane();
contentPane.setBackground(Color.green);
contentPane.setLayout(null);

sample1JLabel = new JLabel();
sample1JLabel.setBounds(50, 50, 150, 20);
sample1JLabel.setFont(new Font(“Default”, Font.BOLD, 12));
sample1JLabel.setForeground(black);
sample1JLabel.setHorizontalAlignment(JLabel.LEFT);
sample1JLabel.setText(“Number 1:”);
contentPane.add(sample1JLabel);

sample1TextField = new JTextField();
sample1TextField.setBounds(220, 50, 80, 20);
sample1TextField.setFont(new Font(“Default”, Font.BOLD, 12));
sample1TextField.setHorizontalAlignment(JTextField.CENTER);
sample1TextField.setForeground(black);
sample1TextField.setBackground(Color.white);
sample1TextField.setEditable(true);
contentPane.add(sample1TextField);

sample2Label = new JLabel();
sample2Label.setBounds(50, 100, 150, 20);
sample2Label.setFont(new Font(“Default”, Font.BOLD, 12));
sample2Label.setForeground(black);
sample2Label.setHorizontalAlignment(JLabel.LEFT);
sample2Label.setText(“Number 2:”);
contentPane.add(sample2Label);

sample2TextField = new JTextField();
sample2TextField.setBounds(220, 100, 80, 20);
sample2TextField.setFont(new Font(“Default”, Font.BOLD, 12));
sample2TextField.setHorizontalAlignment(JTextField.CENTER);
sample2TextField.setForeground(black);
sample2TextField.setBackground(Color.white);
sample2TextField.setEditable(true);
contentPane.add(sample2TextField);

totalLabel = new JLabel();
totalLabel.setBounds(50, 150, 150, 20);
totalLabel.setFont(new Font(“Default”, Font.BOLD, 12));
totalLabel.setForeground(black);
totalLabel.setHorizontalAlignment(JLabel.LEFT);
totalLabel.setText(“TOTAL:”);
contentPane.add(totalLabel);

totalTextField = new JTextField();
totalTextField .setBounds(220, 150, 80, 20);
totalTextField .setFont(new Font(“Default”, Font.BOLD, 12));
totalTextField .setHorizontalAlignment(JTextField.CENTER);
totalTextField .setForeground(black);
totalTextField .setBackground(Color.white);
totalTextField .setEditable(true);
contentPane.add(totalTextField);


computeBT = new JButton();
computeBT.setBounds(50, 400, 100, 20);
computeBT.setFont(new Font(“Default”, Font.BOLD, 12));
computeBT.setForeground(black);
computeBT.setBackground(Color.white);
computeBT.setText(“Compute”);
computeBT.setHorizontalAlignment(JLabel.CENTER);
contentPane.add(computeBT);
computeBT.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent event){
computeBTActionPerformed(event);
}
}
);


setTitle(“Inventory System”);
setSize(650, 500);
setVisible(true);
setBounds(35,20,960,700);

}
public static void main(String[]args){

Main application = new Main();
application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

public void computeBTActionPerformed(ActionEvent event){
getSum();
}
public void getSum(){


sum1What is this?ouble.parseDouble(sample1TextField.getText());
sum2What is this?ouble.parseDouble(sample2TextField.getText());
totalTextField.setText(“”+(sum1+sum2));


}

}

“sEmetimes we just have to LET GO of somEone who MATTERS to us not becausE we have to but it’s the RIGHT thing to Do. let us remEmber that we can’t FORCE anyone to LOVE us. we can’t BEG someone to STAY when he/she wants to LEAVE and be with someone else. howEver, the END of LOVE is not thE END of LIFE. it should be the BEGINNING of understanding that leavEs for a REASON but LEAVES with a LESSON. :P hEhemM..

.hOi???ikaw?? hehe..awp.kaw bah.. yaw E blame ang taong pobri.salig nga datu ka..imu nalang cya ingun anaon..saOn man.g.anak man cya ug pobri.dili na niya sala.cguro ug makahuman na cya ug skwela.matalbugan jud ng pagka datu nin.u ba.ayaw tawn cya ingun anaa.looi baya.im surE masakitan pod na cya sa imung mga gpang ingun.kaW jud.tsk.BAD.God have a plan to him.malai mo.ma presidenti cya sa pilipinas.hehe.awp.
bitaw.mao ratu.DONT BLAME.uki?be a gooD boy.masakitan na atung amigu.hehe. f.u read my post (PEACE).hehe..wala qui gilabanan sa n.u.uki.?hek..thats all.:)

.hOi???ikaw?? hehe..awp.kaw bah.. yaw E blame ang taong pobri.salig nga datu ka..imu nalang cya ingun anaon..saOn man.g.anak man cya ug pobri.dili na niya sala.cguro ug makahuman na cya ug skwela.matalbugan jud ng pagka datu nin.u ba.ayaw tawn cya ingun anaa.looi baya.im surE masakitan pod na cya sa imung mga gpang ingun.kaW jud.tsk.BAD.God have a plan to him.malai mo.ma presidenti cya sa pilipinas.hehe.awp.
bitaw.mao ratu.DONT BLAME.uki?be a gooD boy.masakitan na atung amigu.hehe. f.u read my post (PEACE).hehe..wala qui gilabanan sa n.u.uki.?hek..thats all.:)

.hOi???ikaw?? hehe..awp.kaw bah.. yaw E blame ang taong pobri.salig nga datu ka..imu nalang cya ingun anaon..saOn man.g.anak man cya ug pobri.dili na niya sala.cguro ug makahuman na cya ug skwela.matalbugan jud ng pagka datu nin.u ba.ayaw tawn cya ingun anaa.looi baya.im surE masakitan pod na cya sa imung mga gpang ingun.kaW jud.tsk.BAD.God have a plan to him.malai mo.ma presidenti cya sa pilipinas.hehe.awp. bitaw.mao ratu.DONT BLAME.uki?be a gooD boy.masakitan na atung amigu.hehe. f.u read my post (PEACE).hehe..wala qui gilabanan sa n.u.uki.?hek..thats all.:)

.hOi???ikaw?? hehe..awp.kaw bah.. yaw E blame ang taong pobri.salig nga datu ka..imu nalang cya ingun anaon..saOn man.g.anak man cya ug pobri.dili na niya sala.cguro ug makahuman na cya ug skwela.matalbugan jud ng pagka datu nin.u ba.ayaw tawn cya ingun anaa.looi baya.im surE masakitan pod na cya sa imung mga gpang ingun.kaW jud.tsk.BAD.God have a plan to him.malai mo.ma presidenti cya sa pilipinas.hehe.awp.
bitaw.mao ratu.DONT BLAME.uki?be a gooD boy.masakitan na atung amigu.hehe. f.u read my post (PEACE).hehe..wala qui gilabanan sa n.u.uki.?hek..thats all.:) amigu ramo..:)))))))))))) mga gwapo mung duhA..aqu cutE lang..hehe..joke..

ahEmm..

416.ang nag onlinE sa akung FB..ayii..daghana uei..awp.himala.ahEmm..wala man gud klasi.hek.awp..