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. wellas666

    Whe repaint instead of paint?

    Thank you very much. I am reading it.
  2. wellas666

    Whe repaint instead of paint?

    A simple code from the book. Why it use applet.repaint() instead of applet.paint() in the listener? paint() is a public method in class Dots, why I cannot do applet.paint() in which applet is an object of class Dots. -------------------------- import java.applet.Applet; import java.awt.*...
  3. wellas666

    Events and Listeners

    Thanks a lot for your help.
  4. wellas666

    In Java, is a string an object?

    OK, it passes the value of the reference, not the value of the object into a method. When the new reference (in the mothod) pointes to another string object the original reference remains pointing to the original object.
  5. wellas666

    Events and Listeners

    Hi, I am confused by Events and Listeners because I know VB. Why VB can work without Listener?
  6. wellas666

    In Java, is a string an object?

    sedj, Thank you for your response. If a String is unchangeable, there must a copy of the string, not the copy of its reference, in the above method (so that it can be changed in the method while not affect the string in the main). That means an object (the string) is copied in the method!
  7. wellas666

    In Java, is a string an object?

    Thank you for the interesting links. However, still need your explanation: A string is an object? In the above method, static String test(String s), s is the reference of a String? Any change of s in the method will change the value of s in the main?
  8. wellas666

    In Java, is a string an object?

    Hi, This should be very simple, but I am a beginner. 1. An object is passed to a method by reference? 2. A string is an object? 3. Hence, a string is passed to a meshod by reference? public class Try { public static void main(String[] args) { String s="222222"...
  9. wellas666

    light of the hard disk will be very busy until I come back

    smah, Thank you. How to know which virus scanner doing that?
  10. wellas666

    light of the hard disk will be very busy until I come back

    electronicsfreak, Thank you. I have just checked that I got no Autoupdates for the system. And, there is no Scheduled Task for the auto defrag in the Control Panel.
  11. wellas666

    light of the hard disk will be very busy until I come back

    BadFrog, Thank you, I will do your test.
  12. wellas666

    light of the hard disk will be very busy until I come back

    BadFrog, Thank you for your response. Can I find amy report about the defrag?
  13. wellas666

    light of the hard disk will be very busy until I come back

    electronicsfreak, Thank you for your response. Can you tell me how to check if my windows XP auto updates is turned on?
  14. wellas666

    light of the hard disk will be very busy until I come back

    Hi, When I leave my computer for a while, the light of the hard disk will be very busy until I come back and do something. Anything wrong?
  15. wellas666

    After modifying the VBA code

    Put my mouse cursor in following Sub and then press F5, I can run it: Private Sub try() MsgBox "aaaaa" End Sub It can fire "Sub objItems_ItemAdd(ByVal Item As Object)" when new email comes.
  16. wellas666

    Excel Sort

    Or try this: Data is in Column A. In column B2, enter this formula: =LEN(A2) (assuming row 1 contains header data) and copy down the formula. Then sort by column B,A.
  17. wellas666

    After modifying the VBA code

    I tried what you said but "Compile Project1" was still grey. I think I should tell you that all my code is under "VbaProject.OTM - ThisOutlookSession (Code)
  18. wellas666

    After modifying the VBA code

    I have just go to Debug and found "Compile Project" was grey. Any idea?
  19. wellas666

    After modifying the VBA code

    Thank you. I am using Outlook 2000. There is a few fimes after I modifying the VBA code it still executed the old code. How to compile the code?
  20. wellas666

    After modifying the VBA code

    Hi In Microsoft Outlook 2000. After modifying the VBA code, do I need to close-save-open Outlook so that the it will run on the new code? Is there any compiling behind? Thank you in advance.

Part and Inventory Search

Back
Top