How can set the flag to set the condition of displaying a message only once when the application gets loaded in Java Language.
Thanks, david
|
How can set the flag to set the condition of displaying a message only once when the application gets loaded in Java Language. Thanks, david |
|||||||
|
|
You could use a global flag store, based on
and use it like this
and later
|
|||||
|
|
|
Just have a
You can test it in an
See also: |
|||
|
|
|
Just put your displaying code directly into the main method. So it executes only onces when the application is run. |
|||
|
|
|
I assume this would mean only once between runs? So only on the first time it's run. This you can do by storing the flag to a file. A good starting point would be to use Something like this:
|
|||||
|