posted 21 years ago
Hi,
Welcome to JavaRanch!
The answer is "no", unfortunately. The way to manipulate a Windows GUI app is by sending it window events, and Java, being a cross-platform language, doesn't have a mechanism for doing this platform-specific thing.
There are plenty of Windows automation and test tools that can do this for you; perhaps someone else can suggest some. Or, of course, you can write a Windows app which does it.
Now, I should say that it's possible to write glue code in C which lets Java code call native platform code, and it's certainly possible that someone has a product which could be used to do what you need. But unless you really, really, really need to use Java for some reason, it'd be much simpler to go another route.