Search:

Type: Posts; User: dpjmie

Search: Search took 0.09 seconds.

  1. Replies
    1
    Views
    1,020

    Resource bundles, Code error

    if (input.getText().equals(myBundle.getString(input.getText())))
    {
    outputLabel.setText(myBundle.getString(input.getText()));
    }

    Just wondering if anyone knows if anything is wrong with this??
    ...
  2. Replies
    0
    Views
    921

    Help with resource bundles

    Just wondering if anyone can help me, i currently have a translater set up to just check an array for a character and swap the input word into the corresponding index of the other language array. I...
  3. Re: Threads, Audio Application, Audio loading twice error

    Wow, so easy when you know how, thanks again norm, your a lifesaver!!!

    Should be called super norm
  4. Threads, Audio Application, Audio loading twice error

    Just wondering if someone could she some light on this for me, i have an application for college which translates irish to english and vice versa, and the audio has to be done using threads. When i...
  5. Replies
    8
    Views
    1,516

    Re: Loop & custom exception error Please help

    OMG, you are an absolute legend, thank you so much, i sincerely appreciate it

    Im such an idiot....

    Thanks again
    Dave
  6. Replies
    8
    Views
    1,516

    Re: Loop & custom exception error Please help

    Hi sorry about this, still not solved, here is the method with the suggested fix
    public static void irishWordExist(String input) throws WordDoesntExistException
    {
    boolean error = false;...
  7. Replies
    8
    Views
    1,516

    Re: Loop & custom exception error Please help

    public static void irishWordExist(String input) throws WordDoesntExistException
    {
    boolean error = false;
    for (int x=0; x<irishWords.length; x++)
    {
    if...
  8. Replies
    8
    Views
    1,516

    Re: Loop & custom exception error Please help

    I have tried that, and still it throws the error, im now loosing my patience
  9. Replies
    8
    Views
    1,516

    Loop & custom exception error Please help

    Below is a method i am using which contains a for loop. it loops through the words in the array and if the input doesnt match one of the strings in the array, it throws an exception, well thats the...
Results 1 to 9 of 9