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

  1. Cybertronic

    Having trouble with Java web browser

    Hi all, I apologise for creating another thread but I would love to have some help with my problem I'm currently having please. I've created a web browser in Java where I have several different classes to help separate the code for ease of coding. I'm currently stuck on a Java class issue...
  2. Cybertronic

    How to create a separate Java class?

    Hi all, In my previous thread I posted a few days ago about JEditorPane regarding my Java web browser, now I've got another problem which is that I would like to separate some of my coding into several classes to prevent my code from getting too long. Below is my current code I have for my...
  3. Cybertronic

    JEditorPane web browser problem

    Hi all, I'm having a problem with my Java web browser program that I'm working on. At the moment I'm stuck on trying to get my web browser to load the home page after it has been executed. Below is my current code for the actionPerformed method: public void actionPerformed (ActionEvent ae) {...
  4. Cybertronic

    How to do secant method in Java?

    Hi all, I was wondering how can I create a secant method function in Java? I've seen a few examples of secant methods created in different programming languages such as Fortran: http://www.ce.udel.edu/faculty/kaliakin/secant_method.html I've tried converting the code in the above link into...
  5. Cybertronic

    Haskell help please

    I thought this would be the best place to ask about for Haskell, I apologise if I've put it in the wrong place, sorry! I'm trying to create a function called display where I type in a product name, e.g. dvd1, it returns the string and the total value of the stock held for the product: Here's...
  6. Cybertronic

    How to match a specific element from an array?

    I'm using the following code for checkboxes in my HTML form: my @color = param('color'); foreach my $color (@color) { print "You picked $color.<br>\n"; } At the moment I'm using this code to match an element from my array: if ($color[0] eq "name of color") The problem is, is there an...

Part and Inventory Search

Back
Top