Posts
 
Reputation
Loading chart. Please wait.
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.8K
~937 People Reached
About Me

Programmer

Interests
Programming
Favorite Tags

3 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
187
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
421
Member Avatar for tgraves

import java.io.*; import javax.swing.*; class student implements Serializable { String name; int age,rollno; FileOutputStream fout; FileInputStream fin; ObjectInputStream oin; ObjectOutputStream oout; DataInputStream din; DataOutputStream dout; public void setdata(String nm,int ag,int rno) { name=nm; age=ag; rollno=rno; } public String width(String s,int n) { int i=1; while(i++<=n) s=s+" "; return s; } …

Member Avatar for peter_budo
0
329