kattiya plz me zip file 1 download karagena program 1 balala mata adu padu kiyanawada

http://www.easy-share.com/1904308586/dist.zip

http://www.easy-share.com/1904308586/dist.zip

jithendra said:kattiya plz me zip file 1 download karagena program 1 balala mata adu padu kiyanawada![]()
![]()
![]()
![]()
![]()
http://www.easy-share.com/1904308586/dist.zip

ne machan zip 1 dl karala extract karahama javaapplication1.jar kiyala file 1k eke run karannadinukap4 said:MACHN PLZ EXPLAIN ME DO I HAVE TO INSTALL IT MY MOBILE PLZ TELL
jTextArea1.setFont(new Font("Dialog", 0, 21));
jTextArea1.setBorder(null);
jTextArea1.setText("Another morphological feature that could be seen in a plant that bears leaves wi" +
"th reticular venation is,"
[COLOR=Red]jTextArea1.setEditable(false);[/COLOR] [COLOR=SeaGreen]// me property eka set kalanam hari[/COLOR]
public void jButton1_actionPerformed(ActionEvent e)
{
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); /[COLOR=SeaGreen]/ driver eka hamba une nathnam methana exception ekak throw karanawa[/COLOR]
Connection conn = DriverManager.getConnection("jdbc:odbc:emp"); [COLOR=Green]// driver eka load kalath database eka nathi hinda methanadi exception ekak throw karanawa[/COLOR]
Statement stmt = conn.createStatement();
String s1 = jTextField1.getText();
String s2 = jTextField2.getText();
String s3 = MAINWINDOW.cc.toString();
stmt.executeUpdate((new StringBuilder()).append("INSERT INTO Employee VALUES ('").append(s1).append("','").append(s2).append("','").append(s3).append("')").toString());
conn.commit();
conn.close();
stmt.close();
}
catch(Exception f)
{
f.printStackTrace();
}
dispose();
Marks m1 = new Marks();
}
}
chamidilk said:malliyo
anith eka oyage interface user friendly madi ne
put radio buttons for answers and place a next button to go to next Qn
-djdil

Im.Just.a.Fool said:malli Question eka display karana window eke text box eka edit karanna bari unanam hondai neda? Users are not expected to edit the text in the TextArea that displays the question.
E.g.
Code:jTextArea1.setFont(new Font("Dialog", 0, 21)); jTextArea1.setBorder(null); jTextArea1.setText("Another morphological feature that could be seen in a plant that bears leaves wi" + "th reticular venation is," [COLOR=Red]jTextArea1.setEditable(false);[/COLOR] [COLOR=SeaGreen]// me property eka set kalanam hari[/COLOR]
Im.Just.a.Fool said:And the following code doesn't work, unless the database exists on the user's machine.
Class name: student
Code:public void jButton1_actionPerformed(ActionEvent e) { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); /[COLOR=SeaGreen]/ driver eka hamba une nathnam methana exception ekak throw karanawa[/COLOR] Connection conn = DriverManager.getConnection("jdbc:odbc:emp"); [COLOR=Green]// driver eka load kalath database eka nathi hinda methanadi exception ekak throw karanawa[/COLOR] Statement stmt = conn.createStatement(); String s1 = jTextField1.getText(); String s2 = jTextField2.getText(); String s3 = MAINWINDOW.cc.toString(); stmt.executeUpdate((new StringBuilder()).append("INSERT INTO Employee VALUES ('").append(s1).append("','").append(s2).append("','").append(s3).append("')").toString()); conn.commit(); conn.close(); stmt.close(); } catch(Exception f) { f.printStackTrace(); } dispose(); Marks m1 = new Marks(); } }