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 #72.9K
~980 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

2 Posted Topics

Member Avatar for xxmp

See, cookies are dependant on browser setting if browser is enabled to accept cookie then the cookie mechanism works but if he /she disabled it then no matter how hard u try the mechanism will not work.So,to solve your problem you have to check wheather in your chrome bowser setting …

Member Avatar for jayvee88
0
198
Member Avatar for AQWst

[QUOTE=AQWst;94213] [CODE]import javax.swing.*; import java.awt.*; import java.io.*; import java.util.*; public class InitialFrame1 extends JFrame { <b>Container pane;</b> public InitialFrame1() { setSize(800, 85); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); pane = getContentPane(); [B]//FlowLayout flo = new FlowLayout(); //pane.setLayout(flo);[/B] pane.setLayout(new GridLayout(3,1)); InitialPanel Date = new InitialPanel(); pane.add(Date); [B]//setContentPane(Date); //InitialPanel Time = new InitialPanel(); //pane.add(Time); //setContentPane(Time);[/B] setVisible(true); } …

Member Avatar for stultuske
0
443

The End.