class A extends Thread { public A(Runnable r) {super(r); run(); } public void run() {System.out.print("A");} }
class B implements Runnable { public B() { run(); } public void run() {System.out.print("B");}
}
class Cero { public static void main(String[] args) { new A(new B()).start(); } }// why it is printing BAA // first call should go to super class only [ May 27, 2005: Message edited by: giribabu rosi ]
i inserted 4 options in using create button.(create i inserted using array same way am using logic:iterate>,but 4 times displaying) 2.while in edit button when i click am not able get all selected values of List box and show to user.
I AM GETTING THREE ARRAY LIST BUT IT HAS TO DISPLAY 2 ROWS ONLY AM USING ONE FORM BEAN FOR THREE ARRAY LIST THE FORM IS --------------
public String cbCheckNo; public String cbDate; public String cbBank; public String cbBranch; public String cbAmount; public String cbCreACNo; public String cbCusName; public String cbRetTo; public String cbRetChg; public String cbDebAC; public String cbTotAmt; public String cbTotNo; public int ackCode; public String date; public int cusid;
MY AIM IS TO DISPLAY ALL IN ONE ROW???should use one query for all this form becouse i ahve three tables for this form>??