Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

raheela123

@raheela123
About
Posts
4
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Mobile Programming
    R raheela123

    import javax.microedition.midlet.*; import javax.microedition.lcdui.*; /** * @author Internet */ public class Midlet123 extends MIDlet implements CommandListener{ private Command Ok; private Display dis; private Form form; public Midlet123() { dis=Display.getDisplay(this); form=new Form("My First Middlet"); Ok=new Command("Exit",Command.OK, 1); form.setCommandListener(this); } public void startApp() { dis.setCurrent(form); } public void pauseApp() { } public void destroyApp(boolean unconditional) { } public void commandAction(Command arg0, Displayable arg1) { if(arg0==Ok) { destroyApp(true); notifyDestroyed(); } } } :laugh: :laugh: ;P :laugh: ;P :laugh:

    Java java help question

  • problem in do-while loop
    R raheela123

    eigther change while ((name!="2208")&&(pwd!="1234")); to while ((!name.equals("2208"))&&(!pwd.equals("1234"))); or while ((n1!=2208)&&(p2!=1234)); ;P ;P ;P ;P

    Java help java question

  • connectivity of SQL server 2000 with java
    R raheela123

    import java.sql.*; Class.forName(sun.jdbc.odbc.JdbcOdbcDriver"); Connection con=DriverManager.getConnection("jdbc:odbc:DSN);// DSN(Data Source Name) Statement st=con.createStatement(); st.executeUpdate("insert query"); // Retrieve datas ResultSet rs=st.executeQuery("query"); while(rs.next()) { String name=rs.getString(1); int age=rs.getInt(2); } ;P

    Java java database sql-server sysadmin

  • Reading Barcode from an Image
    R raheela123

    how can Read Barcode from an image :(

    Java
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups