Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PondyPrem

    snake algorithm

    You 've to conceptually split the snake into slices... Say the snake has 12 slices Goes west ... at pt (x,y) user presses upward arrow erase the 4 slices at the tail.. start piling slices towards North.. continue loop You need to have the following attributes in Snake...
  2. PondyPrem

    Images and Array

    with Java you can process your images (without converting them to binary arrays)... Lookup the documentation for the following classes ... RGBImageFilter RGBColorModel - you 've to customize for your preference ByteLookupTable etc., U can do lots of...
  3. PondyPrem

    JDBC Connection

    You have to direct the 'rs' object to the first row... before doing any rs.getString().. Otherwise... 'ResultSet' will be pointing nowhare :-) so insert " rs.next()" immediatly after stmt.executeQuery() (eg) rs = stmt.executeQuery(query)...
  4. PondyPrem

    javax.* Packages not found in import statements

    Your class path should be set classpath=C:\JDK1.2.2\lib - for java.* Put the 'servlet.jar' in the same directory and append the follwoing to the classpath ;C:\JDK1.2.2\lib\servlet.jar Prem
  5. PondyPrem

    javax.* Packages not found in import statements

    Your class path should be set classpath=C:\JDK1.2.2\lib - for java.* Put the 'servlet.jar' in the same directory and append the follwoing to the classpath ;C:\JDK1.2.2\lib\servlet.jar

Part and Inventory Search

Back
Top