Computer Science Canada textfields within a procedure |
Author: | Naveg [ Wed Feb 23, 2005 9:47 pm ] | ||
Post subject: | textfields within a procedure | ||
How come textfields don't work in a procedure without an added processEvent inside? is there a way around this? example:
i need to be able to input text into the fields |
Author: | Tony [ Thu Feb 24, 2005 11:04 am ] | ||
Post subject: | |||
the way GUI class works is that processEvent() needs to be called to check if any of user actions interact with any of GUI elements. in theory, you build up your GUI and then let the program run in an infinate loop
|