Q4022 How do I make stand alone ATW applications?
You are here: irt.org | FAQ | Java | Q4022 [ previous next ]
Your main application class should inherit from Frame and it it uses threads it should also implement runnable:
class MyAWTapp extends Frame implements Runnable {
....
}
©2018 Martin Webb