• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

swing proect help..

 
Ranch Hand
Posts: 674
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there

I am working on a simple Swing based desktop application.
This is my first I am working with swing GUI

I have done event Handling programming in Android and Web Applications but Swing is first time

My Project synoposis is very simple
"User has a student management system where user can add Students,Delete Students,Edit Students and also can search students I want all window should open In first Window
There is some Tab View on top level and I also want to perform some evet Handling on Various Items Clicks"

My First Question
1)Well If we click on Web Site Anchor <a> then a New page opens.Will that logic also works in Swing too?

2)I want to open only one window for one particular task?(How can I do that in Swing)


Thanks
 
Marshal
Posts: 79177
377
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Kishor Joshi wrote: . . . 1)Well If we click on Web Site Anchor <a> then a New page opens.Will that logic also works in Swing too?

No.

2)I want to open only one window for one particular task?(How can I do that in Swing)


Thanks

Only create one window (actually it would usually be a frame).

You should start by creating a student management program which works without using any Swing classes at all. It needs an interface so you can run it from the command line/terminal.
 
reply
    Bookmark Topic Watch Topic
  • New Topic