CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Jhonnyboy

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    675

    Re: Can't get an if conditional to work.

    Glad I could help! :)
  2. Replies
    4
    Views
    675

    Re: Can't get an if conditional to work.

    Have u tried to use?

    if(type.equals("adult"))

    or

    if(type.compareTo("adult))


    Cux comparing two strings with == operator just compares their address
  3. Replies
    1
    Views
    6,964

    Printing several pages

    Hi!

    I have been fighting with the printer for a while now :)

    Do you know how to print out several pages??
    Or tips??

    I can print out a page with the content I want to be on it, No problem...
  4. Replies
    3
    Views
    12,876

    Re: JFileChooser - File name field(label)

    Yep you are right, I should have explained a bit more.

    It's true that it is empty if you open the open/save filechooser first time....but let say if you save a file or open a file and then press...
  5. Replies
    3
    Views
    12,876

    JFileChooser - File name field(label)

    Hi!

    My question is if there is a method to change the file name field to....hmm...lets say empty.
    So when I choose to open the save/open jfilechooser dialog I want the "file name" field to be...
  6. Problem: Set your own icons as icon image on file icon

    Hi!

    Do u know how to use your own (self made) icon as a file icon when u save with:

    Employee e1 = new Employee("A", 45000.0);
    FileOutputStream fos = new FileOutputStream("employee.ser");...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured