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 Mike Lewis 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. mlundin617

    Regular Expressions in Internet Explorer 5.0

    I use the following function to allow a search to highlight the text it finds on a document: function replaceText ( node ) { searcher = new RegExp ( textString, "gi" ); firsthit = searcher.exec(node.nodeValue) if ( firsthit ) { node.parentNode.innerHTML =...
  2. mlundin617

    Redirecting System.out to a JTextArea

    Thanks Mark, But I'm still confused. How should I set up that BufferedReader? The compiler spits it out when I try it just like that, since in isn't initialized. Also, where should I put the while loop, since it looks like that's going to be running all the time? Thanks again for your...
  3. mlundin617

    Redirecting System.out to a JTextArea

    I've got a couple nicely working classes that throw their print with System.out.println. My question is, is there a way to redirect the System.out.println so that these lines print to a JTextArea? I basically want my swing front-end to print out what's going on in the background. Is this...
  4. mlundin617

    Hyperlinking to Browser Windows

    I have an application on which I have successfully displayed HTML hyperlinks. My question is, now that I have that, is there a way to tell the hyperlinks to display the documents in another window? I have a separate HTML page set up, and what I'd really like to have happen is to get the...

Part and Inventory Search

Back
Top