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 Chriss Miller 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: *

  • Users: thelordoftherings
  • Content: Threads
  • Order by date
  1. thelordoftherings

    How to use the sign " in a query submittion?

    Hello, How do I execute a query to the Database (MSSQL) that contains the " sign? I tried replacing " with \" but it didn't work...
  2. thelordoftherings

    "There is no disk in the drive" message keeps poping up

    Hello, I have Windows XP Pro. Every now and than 10-15 minutes my computer prompts this message to me with title "svchost.exe": "There is no disk in the drive. Please insert a disk into drive F:" Where Drive F is my DVD burner (in case it matters). With an option of: "Cancel", "Try Again" and...
  3. thelordoftherings

    Tomcat doesn't refresh new source code without restarting it

    Hello, I am using Tomcat v5.0.28. Every Servlet (or other code) that write and put at the webapps folder is being executed OK, but when I change the source code, the Tomcat always loads the older version. Only after restarting the Tomcat I can see the new version of the code. What could be the...
  4. thelordoftherings

    Problem with SearchControls object with regards to LDAP

    Hello, I am using a SearchControls object in order to search in my LDAP. I would like to get our departments inside the organization. For that I need only the OUs without the users inside them. The problem is this: Assume controls is of type SearchControls. When I use...
  5. thelordoftherings

    Windows explorer "Tools" menu has gone...

    Hello, For some reason when I open the windows explorer (not the web browser but the local one to see drives and folders) I've noticed that I lost the regular "Tools" menu which had, amonmg other things, the "Folder Options..." section. Instead, when I click tools I only see these 3 options: 1...
  6. thelordoftherings

    Question regarding stack and heap memory

    Hello, A quick question. When I create a static final primitive inside an Object, does the JVM saves it in the stack memory (since it is constant, therefore will never grow) or in the heap memory (where it saves all the Objects)?
  7. thelordoftherings

    Need help in building this query...

    Hello, I have a table containing this sort of a data: ID DATE 123 1/1/2005 456 1/4/2006 123 7/5/2005 789 11/10/2002 789 6/7/2001 123 1/12/2003 .... I would like to create a query which will output for each ID it's latest date available. For example, for the data...
  8. thelordoftherings

    The following method doesn't send emails to "outside" addresses

    Hello, I am using this method to send an email: public boolean sendMail(String from, String to, String subject, String body) { try { InitialContext ctx = new InitialContext(); Session sess = (Session) javax.rmi.PortableRemoteObject.narrow(ctx.lookup("java:comp/env/mail/MailSession")...
  9. thelordoftherings

    Looking for a good arcticle which explains the JVM loading

    Hello, I am looking for a good arcticle which explains what happens at the JVM when it loads and when I run a certain Java application, meaning how the ClassLoader works, how the Class objects are being instantiated and when ect.
  10. thelordoftherings

    Need help in creating a progress bar

    Hello, I have a simple GUI which contains a progress bar. The problem is that the progress bar is reaching to 100% and only than the Window loads. I would like that the progress bar will be working with the GUI and not after it. What do I need to change in the following code in order to acheive...
  11. thelordoftherings

    Exam question regarding garbage collection

    Hello, I've encountered with this question in a certain exam: Given: 10. public Object m() { 11. Object o = new Float(3.14F); 12. Object [] oa = new Object[1]; 13. oa[0] = o; 14. o = null; 15. return oa[0]; 16. } When is the Float object, created in line 11, eligible for garbage collection? A...
  12. thelordoftherings

    DVD data can be read on the DVD burner only

    Hello, Well, this is not an XP-related issue but I couldn't find other forum to put this into and from my experience the guys here are very professional when it comes to technical advices so here goes... I have two DVD drivers: One is a DVD burner and the other is a DVD reader. Often, when I...
  13. thelordoftherings

    why transient variable cannot be declared as final or static?

    a transient variable cannot be declared as final or static" What is the logic behind this?
  14. thelordoftherings

    How to transfer a client-only rule to the exchange server?

    Hello, I've created a rule that activates a certain VBA script when a mail arrives to a certin account. This rule has to be client rule, meaning it will be active only when the client outlook application is open. My question is if there is any way to transfer the rule and the VBA code for this...
  15. thelordoftherings

    Rule that suppose to activate VBA script is not starting

    Hello, I've created a rule to active a certain VBA script I wrote and it is working OK. I wanted to migrate it to another computer, so I've copied the module over there and created the same rule. THe problem is that when an appropriate mail arrives the script is not activated. My Macro security...
  16. thelordoftherings

    How to encode string subject using the MimeMessage and Transport objec

    Hello, I am using the MimeMessage and Transport objects in order to send mails. is there any method/option to encode the subject and the body string messages using these objects before sending? Roy
  17. thelordoftherings

    Where to see which method replace deprecated one?

    Hello, Many times I encounter deprecated method yet the JDK javadoc (AFAIK) doesn't redirect you which method to use or which approach to take instead of the old one. So, is there a place at the javadoc that I can see it?
  18. thelordoftherings

    What is the difference between an html file and an htm file?

    Hello, What is the difference between an html file and an htm file?
  19. thelordoftherings

    How to retrieve the date and time from the server

    Hello, How can I retrieve the date and time from the server?
  20. thelordoftherings

    How to set new browser to be opened in a maximized Window?

    Hello, Whenever I open new link in Internet explorer the new window opened with fixed small size and I need to maximize it. How coan I change that so every link that is opened in new browser will be opened in a maximized Window?

Part and Inventory Search

Back
Top