Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. welldefined

    Can I ignore teh tracking cookies?

    Hi, I have just done what you suggested to never allow http://ad.yieldmaneger.com/imp?... to use cookies. After close and reopen the IE and open some site, I checked the privacy report again: two items for http://ad.yieldmaneger.com/imp?... ,one is blocked but the other is accepted! I then...
  2. welldefined

    Can I ignore teh tracking cookies?

    Thanks a lot, that is really helpful.
  3. welldefined

    Can I ignore teh tracking cookies?

    Hi, Always get a few tracking cookies, I think I know the site where they come from. Can I ignore them or how to stop them? Thank you in advance.
  4. welldefined

    put a line to a text file

    I know, I need to close bw. Thank you.
  5. welldefined

    put a line to a text file

    Yes, you are right! Now, no error message. However, nothing would be put to the out.txt file by this code: try { FileWriter fw = new FileWriter("out.txt"); BufferedWriter bw = new BufferedWriter(fw); bw.write("inputed a line: "); } catch(IOException e) {...
  6. welldefined

    put a line to a text file

    OK, it steel shows the error message after adding something in the catch clause: try { FileWriter fw = new FileWriter("out.txt"); BufferedWriter bw = new BufferedWriter(fw); } catch(IOException e) { System.out.println(e.getMessage()); } bw.write("inputed a line: ");
  7. welldefined

    put a line to a text file

    Hi, I tried to put a line into a text file without success: try { FileWriter fw = new FileWriter("out.txt"); BufferedWriter bw = new BufferedWriter(fw); } catch(IOException e) { } bw.write("inputed a line: "); It said "bw cannot be resolved". Just learnt how to get a line...
  8. welldefined

    Unhandled exception type FileNotFoundException

    Thanks for all your helps.
  9. welldefined

    Unhandled exception type FileNotFoundException

    I see.......so, for what kind of code we should add try-catch block?
  10. welldefined

    Unhandled exception type FileNotFoundException

    Hi, I am using eclips3.0 and found String file = "dddd.txt"; FileReader fr = new FileReader(file); not working. It said: Unhandled exception type FileNotFoundException Can you tell me what I am doing wrong? Does eclips3.0 support that?
  11. welldefined

    confused by 'this'

    Thanks a lot. I think I understand method addActionListener() now!
  12. welldefined

    confused by 'this'

    h0h0h0, Thank you. Can you show me any example?
  13. welldefined

    confused by 'this'

    sedj, Thank you. Can I use some instance object of another class to replace 'this' in text1.addActionListener(this);
  14. welldefined

    confused by 'this'

    stefanwagner, Thank you. Did you mean this refers to ActionListener?
  15. welldefined

    confused by 'this'

    kaht, Thank you. Why your explanation looks not the same as stefanwagner? Perhaps I misunderstood something?
  16. welldefined

    confused by 'this'

    Hi, In text1.addActionListener(this); what 'this' for? I remember sometimes 'this' is for the whole class.
  17. welldefined

    input.text in css

    Thank. However, the like you suggested only deals with Input as a whole, there is no item for <input type="text">
  18. welldefined

    input.text in css

    Hi, I want the css special for <input type="text"> and tried to put the following in my style.css file but not wording: input.text {font-size: 14px; line-height: 19px; height: 19px; border: 1px solid;} What I am doing wrong? Thank you in advance.
  19. welldefined

    &lt;td bgcolor=the color from css&gt;

    Thank you. That works!
  20. welldefined

    &lt;form&gt; and &lt;table&gt;

    Thank you again!

Part and Inventory Search

Back
Top