Get the components from a java application

gcs1968

New member
Joined
May 12, 2008
Messages
2
Programming Experience
Beginner
Hi I am new to vb,
I am trying to get the components from a java application, i can get the window handle and title but not the child components.

Ant tips or links to examples would be much appreciated.

Thanks:confused:
 
My first thought reading this is that java probably doesn't use standard windows buttons to represent anything in its interface. The whole this is drawn by the VM because they are "lightweight components".

http://java.sun.com/j2se/1.5.0/docs/guide/awt/1.3/designspec/lightweights.html

I don't know if you can modify a Java application to use "heavyweight components"... For now, it's like trying to get the windows handle of a rectangle drawn on a panel...
 
Back
Top