pallavimushan-java.blogspot.com
Pallavi: Interpocess Communication In Java
http://pallavimushan-java.blogspot.com/2011/02/interpocess-communication-in-java.html
Wednesday, February 23, 2011. Interpocess Communication In Java. Message Class synchronizing the messages between PrintHow n PrintHello classes,. System.out.println("How");. System.out.println("Hello");. Class printhow extends Thread. Class printhello extends Thread. Public static void main(String arg[]). Message m=new Message();. Printhello po = new printhello(m);. Printhow ph = new printhow(m);. Subscribe to: Post Comments (Atom). Http:/ pallavimushan.blogspot.com. Believe In The BEAUTY Of Your DREAMS!
pallavimushan.blogspot.com
Pallavi: Save Tigers, Save Our Heritage...
http://pallavimushan.blogspot.com/2011/02/save-tigers-save-our-heritage.html
Tuesday, February 15, 2011. Save Tigers, Save Our Heritage. Http:/ www.facebook.com/pages/Save-Tigers-Save-Our-HeritageJust-1411-left/277534109206. Subscribe to: Post Comments (Atom). Believe In The BEAUTY Of Your DREAMS! One Day At A Time . Our GOD is and Awesome GOD! People are just as HAPPY as they make their minds to be. People you DOUBT what you say, BUT they will always BELIEVE what you DO! Take Care of YOUR CHARACTER, and YOUR REPUTATION will TAKE CARE of ITSELF. THERE BUT FOR THE GRACE OF GOD GO I.
pallavimushan.blogspot.com
Pallavi: March 2011
http://pallavimushan.blogspot.com/2011_03_01_archive.html
Friday, March 4, 2011. Delegates in C#.NET. Delegates in C# -. Delegates are used to Call non-member function of the Class/ Form. (functions of other class/ Form). If we want to call load event of Form1. Event On closing of Form2. 1 In Form1 Coding. Public delegate voidForm1FormLoadHandler();. Public void OnFrm BudgetDetailsFormLoad(). Object s = null;. EventArgs e = null;. Form1 Load(s, e);. Private void Form2 FormClosing(object sender, FormClosingEventArgs e). Form1 frm = (Form1)this.frm;. For (j = 1; ...
pallavimushan-java.blogspot.com
Pallavi: Socket Programming in Java
http://pallavimushan-java.blogspot.com/2011/02/socket-programming-in-java.html
Wednesday, February 23, 2011. Socket Programming in Java. Import java.io.*;. Import java.net.*;. Public static void main(String args[]). Creating a server side socket. Data being sent throught this port. ServerSocket ss = new ServerSocket(8765);. Socket incoming = ss.accept();. BufferedReader br = new BufferedReader (new InputStreamReader(incoming.getInputStream() );. BufferedReader lin = new BufferedReader (new InputStreamReader(System.in) ;. System.out.println("Server : Enter BYE to exit");. One Day At...
pallavimushan.blogspot.com
Pallavi: February 2011
http://pallavimushan.blogspot.com/2011_02_01_archive.html
Wednesday, February 16, 2011. Crystal Reports in C#.NET. Links to this post. Java - To Check ArmString Number. Public static void main(String arg[]). N = Integer.parseInt(arg[0]);. Int digit, sum, num;. System.out.println();. System.out.println("Number : " n);. Digit = n % 10;. Sum = sum (digit * digit * digit);. System.out.println();. System.out.println("Sum : " sum);. If (sum = num). System.out.println("Given number is an ArmStrong");. System.out.println();. Links to this post. How to Group the fields?
pallavimushan-java.blogspot.com
Pallavi: February 2011
http://pallavimushan-java.blogspot.com/2011_02_01_archive.html
Wednesday, February 23, 2011. Socket Programming in Java. Import java.io.*;. Import java.net.*;. Public static void main(String args[]). Creating a server side socket. Data being sent throught this port. ServerSocket ss = new ServerSocket(8765);. Socket incoming = ss.accept();. BufferedReader br = new BufferedReader (new InputStreamReader(incoming.getInputStream() );. BufferedReader lin = new BufferedReader (new InputStreamReader(System.in) ;. System.out.println("Server : Enter BYE to exit");. System....
pallavimushan.blogspot.com
Pallavi: Java - To Check ArmString Number
http://pallavimushan.blogspot.com/2011/02/java-to-check-armstring-number.html
Wednesday, February 16, 2011. Java - To Check ArmString Number. Public static void main(String arg[]). N = Integer.parseInt(arg[0]);. Int digit, sum, num;. System.out.println();. System.out.println("Number : " n);. Digit = n % 10;. Sum = sum (digit * digit * digit);. System.out.println();. System.out.println("Sum : " sum);. If (sum = num). System.out.println("Given number is an ArmStrong");. System.out.println();. System.out.println("Given number is not an ArmStrong");. Subscribe to: Post Comments (Atom).
pallavimushan.blogspot.com
Pallavi: Delegates in C#.NET
http://pallavimushan.blogspot.com/2011/03/delegates-in-cnet.html
Friday, March 4, 2011. Delegates in C#.NET. Delegates in C# -. Delegates are used to Call non-member function of the Class/ Form. (functions of other class/ Form). If we want to call load event of Form1. Event On closing of Form2. 1 In Form1 Coding. Public delegate voidForm1FormLoadHandler();. Public void OnFrm BudgetDetailsFormLoad(). Object s = null;. EventArgs e = null;. Form1 Load(s, e);. Private void Form2 FormClosing(object sender, FormClosingEventArgs e). Form1 frm = (Form1)this.frm;. One to Many ...