Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Recent content by Yhash

  1. Yhash

    All about programming (Specially c, c++, VB, Java)

    yes it is possible however you need to learn how to query the database using jdbc and also how to use jtable.
  2. Yhash

    [TUT]Setup a SOHO/Computer Shop Network

    Umuulan ng kaalaman ang thread ng ito salamat sa thread starter. definitely I will bookmark it. :thumbsup:
  3. Yhash

    All about programming (Specially c, c++, VB, Java)

    @sassychic Wow! Ganda naman nyan. Good Job.
  4. Yhash

    All about programming (Specially c, c++, VB, Java)

    Kung sa Java dito ka lang pumunta pag meron kang hindi alam gamitin. http://docs.oracle.com/javase/7/docs/ http://docs.oracle.com/javase/7/docs/api/index.html
  5. Yhash

    All about programming (Specially c, c++, VB, Java)

    Basa ka lang ng libro pa tungkol sa Java at wag kalimutan e practice ang bawat matutunan. If you don't have a book yet. You can try the book on my signature.
  6. Yhash

    All about programming (Specially c, c++, VB, Java)

    simulan mo sa pagbabasa ng ebook pwede mo subukan ung ebook sa sig ko. Tsaka saka mo nalang pag-aralan ung dbms for c++ dahil hindi naman un pang beginner. Tutukan mo muna ung basic ng language and saka ka mag move on sa windows programming.
  7. Yhash

    (UPDATED)Globe Tattoo 4G Flash (Huawei E357s-2) Default Dashboard

    I tried it in my huawei e1552 but failed to install. :noidea:
  8. Yhash

    All about programming (Specially c, c++, VB, Java)

    In practice hindi naman talaga ginagawang .exe ung mga program na ginawa gamit ang Java. Kasi naman kung gagawin un e di mawawala ung isa sa pinaka advantage ng Java - cross platform. Ang gawin mo na lang e gawin mo siyang runnable jar. Dagdag ko na din pwede ka din mag lagay ng native...
  9. Yhash

    ANO PO BA ANG MAS MAGANDA? windows7/xp/vista VOTE NOW!

    Siyempre mas bagong version mas maganda. Ang tanong na lang eh kaya ba ng pc mo? In short kung pipili ng OS dapat eh akma sa pc pag gagamitan.
  10. Yhash

    All about programming (Specially c, c++, VB, Java)

    Check mo dito sa documentation ung syntax.
  11. Yhash

    All about programming (Specially c, c++, VB, Java)

    @danielbargs First you need to register ActionListener to your JButton so that it can accept ActionEvent. For example if the name of your JButton is pressButton then the code would be something like this: pressButton.addActionListener(new ActionListener() { public void...
  12. Yhash

    All about programming (Specially c, c++, VB, Java)

    Di talaga yan mag sa save gumawa ka kasi ng bagong employee imbes na gamitin mo ung pinasang employee sa addEmployee. void addEmployee(employee *s) { double _sss,_pagibig,_tax; int _late,_ot,_absent,_work,_rate; employee myemployee; Ung naka kulay blue yan dapat gamitin mo hindi ung naka...
  13. Yhash

    All about programming (Specially c, c++, VB, Java)

    Hehe nahuli na pala ako. :lol:
  14. Yhash

    All about programming (Specially c, c++, VB, Java)

    eto siguro hinahanap mo. :) public class Sample { public static void main(String[] args) { int x=9, y=10, z=11; System.out.print("The highest number is " + ((x>y)?(x>z?x:z):(y>z?y:z))); } }
  15. Yhash

    All about programming (Specially c, c++, VB, Java)

    Use java.awt.event.ItemListener instead of java.awt.event.ActionListener. Snippet import java.awt.event.ItemEvent; import java.awt.event.ItemListener; JComboBox monthComboBox = new JComboBox(); monthComboBox.addItemListener(new ItemListener() { public void itemStateChanged(ItemEvent e) {...
Back
Top Bottom