No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
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 …
[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); } …
The End.
rajesh.ingole26