Search:

Type: Posts; User: destitute.developer

Search: Search took 0.20 seconds.

  1. Replies
    3
    Views
    899

    Re: Hi from alemania

    hello :) also from Philippines :D
  2. Re: Need help calling methods in a GUI

    yes, basically same principle applies there.



    myPOJO pojo = new myPOJO("the String",2); // can use my defined constructor to initialize my pojo
    //get values with the getter methods...
  3. Re: Beginner... stuck on how to use FormattedFields in java for inserting dates

    using your code above




    jFormattedTextField1 = new JFormattedTextField(new SimpleDateFormat("MM/dd/yy - mm:HH"));
    jFormattedTextField1.setValue(new Date());
    ...
  4. Re: Need help calling methods in a GUI

    hi,

    correct me if i'm wrong.
    your problem is using the 'Dog' class to return the user input to the text area?

    well can create a variable of that class, kinda like this



    public class...
  5. Re: Beginner... stuck on how to use FormattedFields in java for inserting dates

    hello,

    As per my understanding of the problem, you want the user to input a date on the text field then as he/she type the text is automatically converted to the format that you want?

    regards...
  6. Replies
    11
    Views
    979

    [SOLVED] Re: Help with my program

    you have actually solved it already :)

    though


    message = message + String.format("Winning sales person: %d", counter);


    this line will always display the max value of 'counter'.
  7. Replies
    11
    Views
    979

    [SOLVED] Re: Help with my program

    Hi

    how about arrays?

    eg :


    int[][] x= new int[10][2];

    x[0][0] = 100; // sales
  8. Replies
    11
    Views
    979

    [SOLVED] Re: Help with my program

    a yes sorry, my bad :) thank you for pointing it out
    carelessness will definitely be the end of me
  9. Replies
    11
    Views
    979

    [SOLVED] Re: Help with my program

    Hi,

    as per my understanding of what you are trying to do, does sample output below fit your need?

    eg :

    Enter units sold by sales person # 1 : 5
    Enter units sold by sales person # 2 : 1
    ...
  10. Replies
    4
    Views
    3,057

    Re: Phone Book Program

    nice :) i'll remember that. thanks.
  11. Replies
    4
    Views
    3,057

    Re: Phone Book Program

    good day


    try this, also how do i insert this the way you inserted your code? sorry, im new to this
    public static void main(String args[]) {

    ArrayList<PhoneBookEntry> list = new...
  12. Replies
    0
    Views
    1,282

    Mail Application

    [Still hoping to find help :D]
    [sorry i had placed this in a wrong place. how do you move this thing?]

    Good Day,

    i am trying to integrate a mail application to my webapp,
    currently it is...
Results 1 to 12 of 14