Forum: Java Sep 16th, 2009 |
| Replies: 4 Views: 232 import javax.swing.*;
import java.awt.*;
public class mainForSimpleGUI
{
public static void main(String[] args)
{
SimpleJavaGUI labelFrame = new... |
Forum: Java Sep 15th, 2009 |
| Replies: 4 Views: 232 Use line 19 before 16 and 17. You are not initializing the theTextArea. |
Forum: Java Sep 8th, 2009 |
| Replies: 2 Views: 295 Thank you, now i don't this. I was working on a java on screen keyboard from 3 months . But the problem was of getting focus and send keys to OS. Finally 3 days back i completed the project and... |
Forum: Java Sep 5th, 2009 |
| Replies: 2 Views: 295 I am giving this title so most of you attract towards this thread. I actually want to know is there any way to link mfc created programe with java . As all the programmers know that mfc contain a lot... |
Forum: Java Sep 2nd, 2009 |
| Replies: 2 Views: 146 |
Forum: Java Aug 22nd, 2009 |
| Replies: 11 Views: 481 I have source code of onscreen keyboard in MFC , is there any tool that help me to convert it in java.. |
Forum: Java Aug 22nd, 2009 |
| Replies: 11 Views: 481 Well is there any way that java can get the handle of event which is focused? |
Forum: Java Aug 21st, 2009 |
| Replies: 11 Views: 481 All what you said is write but i want to do it automatically not manually clicking and there can any other active programe like microsoft word then how my programe send's the key .... I always post... |
Forum: Java Aug 21st, 2009 |
| Replies: 11 Views: 481 JTextField only work inside java i want to send the events to outside environment. |
Forum: Java Aug 20th, 2009 |
| Replies: 11 Views: 481 well sorry i forgot to take that code out of these , i just when i press any button it do in my keyboard through mouse then it work and that's what all i concerned. |
Forum: Java Aug 20th, 2009 |
| Replies: 11 Views: 481 import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.Robot;
import java.awt.Event;... |
Forum: Java Jun 6th, 2009 |
| Replies: 5 Views: 367 Thank You Friendz Especially Ezzaral. |
Forum: Java Jun 4th, 2009 |
| Replies: 5 Views: 367 I want to learn JNI , please suggest me some basic guide. |
Forum: Java May 31st, 2009 |
| Replies: 9 Views: 431 Great Help! Thank You Very Much. |
Forum: Java May 31st, 2009 |
| Replies: 9 Views: 431 Thank you very much JamesCherrill , it solve my problem but still i am facing a problem is that how can i get focus of the place where i want to write some thing. |
Forum: Java May 31st, 2009 |
| Replies: 9 Views: 431 When I press 'A' on my On-screen Keyboard then It should generate the interrupt like hardware keyboard. I mean this. In vb Made on-screen keyboard we send the key but in java how can we do this? |
Forum: Java May 31st, 2009 |
| Replies: 9 Views: 431 I mean when I press 'A' in the keyboard it generate function like Normal Hardware Keyboard and writes that word. |
Forum: Java May 30th, 2009 |
| Replies: 9 Views: 431 I am making on-screen keyboard in java. All what i want to know is how to get focus into the notepad or any other typing point , I mean when i press a key it type it into the typing point like a... |
Forum: Java May 25th, 2009 |
| Replies: 3 Views: 224 Thank You Very Much it solved my problem.... |
Forum: Java May 25th, 2009 |
| Replies: 8 Views: 569 http://java.sun.com/docs/books/tutorial/uiswing/layout/gridbag.html
I think it will solve your Problem. |
Forum: Java May 25th, 2009 |
| Replies: 3 Views: 224 import javax.swing.*;
import java.awt.*;
public class keyboard
{
public static void main(String args[]) |