eeeh, umm not really sure, what to name this. Using a char to include into

Ok sry i have no clue what to name this, sry.

Heres the code.

publicstaticvoid sendWord(Robot robot, String word){

String wordUp = word.toUpperCase();

char [] letters = wordUp.toCharArray();

for(int i = 0; i < letters.length; i++){

System.out.println(letters[i]);

pressKey(robot, KeyEvent.VK_letters[i]);

}

}

The problem is apperant. the wonderfull pressKey(robot, KeyEvent.VK_letters);

How should i go about doing this? This seems pretty self explanitory, but it might not be so if i need to explain the code i will.

[904 byte] By [krrose27a] at [2007-11-27 10:35:00]
# 1

Continued here:

http://forum.java.sun.com/thread.jspa?threadID=5194896

prometheuzza at 2007-7-28 18:32:29 > top of Java-index,Java Essentials,New To Java...