5

I'm a .Net Developer and new to Java environment. I'm currently I'm using Netbeans 7.1. In Windows Forms there are DatagridView, ListBox, and ListView. What are the equivalent controls present in Swing, specifically DatagridView? How can I bind those grid in ResultSet?

Suggested links for tutorial are very much appreciated.

Joey
  • 344,408
  • 85
  • 689
  • 683
SkyDrive
  • 1,445
  • 4
  • 15
  • 24

1 Answers1

7

This page describes the component list available in Swing. For GridView you can choose JTable.


Also if you are willing to use SwingX, then there you will find, JXTable, JXTreeTable.

Tapas Bose
  • 28,796
  • 74
  • 215
  • 331
  • You are welcome. I have edited my answer with more information. Also if this answer is helpful then please up-vote it. – Tapas Bose Mar 04 '12 at 10:25