Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~728 People Reached
Favorite Forums
Favorite Tags
java x 3

3 Posted Topics

Member Avatar for mits28

I think it was suggested by majestics but you need to check your columnIndex. I am not certain about how MS access handles sql queries, if you could post the layout and contents of your products table I may get a clearer picture.

Member Avatar for mits28
0
464
Member Avatar for jahanruhi3@gmai

The javadoc states that only one ResultSet object per Statement object can be open at the same time. Therefore, if the reading of one ResultSet object is interleaved with the reading of another, each must have been generated by different Statement objects. Also you should close the statement object when …

Member Avatar for reubenj
0
150
Member Avatar for mohamed moamen

You should probably try adding the CustomPanel instance to the new panel, in your case the instance is myPan. [CODE]myPan = m;[/CODE] Just copies the reference of m to myPan, right now you adding both panels to the frame. [CODE]myPan.add(m);[/CODE] might work Then add myPan to the frame so [CODE]window.add(myPan);[/CODE]

Member Avatar for mohamed moamen
0
114

The End.