Majestics 84 Posting Pro

1) Use code Tags
2)SortNow(); // No paramater
3)private int SortNow(int[] a,int i, int n) // Three Paramter

You are calling a function which dont exist...
Pass paramters or make empty paramter function.

Majestics 84 Posting Pro
//Wrong
for (arrayPosition = 0; arrayPosition == cipherText.length(); arrayPosition++, letterPosition++)

//Right
for (arrayPosition = 0; arrayPosition < cipherText.length(); arrayPosition++, letterPosition++)

You have used == instead of less or greater then symbol on line 29

mKorbel commented: good catch +9
Majestics 84 Posting Pro

Sorry, but u can give me warning , not a negative point......

Majestics 84 Posting Pro

http://download.oracle.com/javase/tutorial/uiswing/layout/visual.html
These are all the layouts which java have... Check which one fulfill ur requirement.

Majestics 84 Posting Pro

Found solution..... and it worked great.

table.changeSelection(i,j,true,false);

u must give me a reputation point on finding such a solution for this forum :) Joking, and thanx for helping.

Majestics 84 Posting Pro

Hahaha You must be kidding , no body will read this much for you... Make a small demo so we start helping you. Atleast divide them in small task.

Majestics 84 Posting Pro
// First Define "a" outside addTab then add "a", Compiler cant recognize ram a
tab.addTab("RD",ram a);
// Its Listener
b1.addActionListeners(this);
//Implement Action Listener
class abc extends JPanel
{
public abc()
{
txt1=new JTextField(15);
b1=new JButton("submit");
b1.addActionListeners(this);
add(b1);
}
}
// JFrame is not visible to void main function , also u are using Jframe Extend then why a new JFrame.
JFrame frame

See some Java Program's.....

jason_joseph60 commented: thank u,i'l debug now +0
Majestics 84 Posting Pro

Check my post, i already solved your matter. At least i deserve a positive point. ;-)

Majestics 84 Posting Pro

Anuradha, The problem was i wasnt using addRow.. But thanx to mKorbel it corrected. I already used Net Beans , Problem is visual tools dont provide enough controls so its better to code in case of performance matter s/w project's.

Majestics 84 Posting Pro
import java.util.Date;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;

    private String getDateTime() {
        DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
        Date date = new Date();
        return dateFormat.format(date);
    }

Format Your Date Structure.

Majestics 84 Posting Pro

why dont u make a separate function and use it in constructor to initialize....

Majestics 84 Posting Pro

You forget this

students[0] = new Student();

same goes for all other...

jon.kiparsky commented: This is correct. Ignore what I said. :) +11
Majestics 84 Posting Pro

Threads will make them more easier..... Please post your code....

Majestics 84 Posting Pro

http://www.cprogramming.com/tutorial/cfileio.html

Read It .It will clear every thing.

Aia commented: Fine link +7