Search:

Type: Posts; User: Norm

Search: Search took 0.12 seconds.

  1. Re: Keeping same window, but displaying new content?

    to remove all the components in a container, get a reference to the container and call the removeAll() method:
    refToContainer.removeAll();

    To remove a specific component:...
  2. Re: Keeping same window, but displaying new content?

    Container is a java SE class. See the API doc:
    Java Platform SE 6
  3. Re: Keeping same window, but displaying new content?

    One way would be to use the Container class's remove and add methods.
    Another would be to use CardLayout.
Results 1 to 3 of 3