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 SkipVought 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. javaarray

    using java script to validate information inside fieldset

    I am trying to use the following java script to validate information inside a <fieldset> Here is the javascript code: <code> <script language=&quot;JavaScript&quot;> function check_form(form) { return_boolean = true; obj = eval(form); for(i=0;i<obj.length;i++) { alert(obj.length)...
  2. javaarray

    reading file from Binary Large Object(BLOB)

    I am writting a text file into a BLOB, when I go to read it back out there are square boxes around my text. Also I am only able to read it by using methods found in the class ByteArrayOutputStream. When I try to read it using the class ObjectInputStream all I get is the numbers which I guess...
  3. javaarray

    ONmouse over and ONmouse off

    Trying to write some code, for when you put the mouse over a button, it trips a image(jpg) in a specfic location. ONMouse out, it trips a blank.
  4. javaarray

    jdbcodbc works in main but not in applet

    I am trying to create tables in a applet and it keeps throwing the following error ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver SQLException: No suitable driver But if I run the same program as a main it works fine. I am developing in visual age for java 3.5 Entry entrprise. If I put...
  5. javaarray

    Making the headers in a table not scroll

    I have a HTML table with headers, there are over 100 rows which fill this table. I would like to know if there is a way to make the header so it does not scroll with the rest of the page. Also the client does want to see that many rows. Thanks in advance,
  6. javaarray

    ResultSet problem

    The way to do this would be to use a CachedRowSet, with this you can move forward,backward and go to locations within the result set. To get everything you need here are the locations: JDBC 2.0 http://java.sun.com/products/jdbc/download.html JDBC Rowset...
  7. javaarray

    Populating a HTML pull-down box from a database

    I need to populate a HTML pull-down box from a database in my JSP page. Then once it is populated I have to pass what ever was selected by the user to a Select statement to make another call to the database to return the information. Thanks in advance,
  8. javaarray

    making the table headings vertical

    Well, the problem is I don't know how to make the headings vertical.
  9. javaarray

    making the table headings vertical

    I am trying to make my table headings vertical, like in a excel document. I am then going to populate the table from a database. This will be done via a jsp. Thanks in advance,
  10. javaarray

    making the header in a html table vertical

    I am trying to make my table headings in a html table vertical, like they can be in say excel or any spread sheet program. This table is going to have a jsp function which is going to make a call to a database and then popuate the table. Thanks in advance
  11. javaarray

    Linking Error Message, What does it mean?

    It looks like your class path is not set right. What are you using windows 98 or are you a NT system? The way to set the class path in above systems is different. But what you put in the class path is the same. Go into the autoexec.bat file and look at your classpath. It should look something...
  12. javaarray

    Soap and Java

    Have a project where client wants to use soap as the way other program languages can access our programs(all written in java). Has any one used soap and java together or do you know of any site which have could I could see and possible use? Thanks
  13. javaarray

    How do I fix this error &quot;NoClassDefFoundError&quot;

    This program was working now when I try to run it, it throws this error &quot;NoClassDefFoundError&quot;, I looked on suns site, but don't understand what is missing. Here is the code: // --------------------------------------------------------------------------- // Import the packages used by...
  14. javaarray

    Java Development Tools

    I currently use visual age for java by IBM, 3.5, you can down load it from the IBM website for free. I like it more everyday that I use it. If your a experience programmer, it will save you a ton of time coding. Also you can do JSP, EJB and servlets, on it. If you are new to JAVA I then would...
  15. javaarray

    Is 128kb the max RAM that Windows 98 can handle

    I am looking at up grading my ram from 64KB to 512KB, using two 256KB sticks of sdram. I was told the windows 98 will only see the first 128KB, is this true?? I know the mother board will handle all 512KB..
  16. javaarray

    USB camera and VB

    Here is a website which has all the code you need for capturing video and manage it with VB. The site is http://ej.bantz.com/video/detail It is very detailed and will walk you right thru it.
  17. javaarray

    Another Challenging Query -- Typical Format Of Output Reqd.

    Here is the code for your problem: SELECT job, ROUND(MAX(sal),0) &quot;Maximum&quot;, ROUND(MIN(sal),0) &quot;Minimum&quot;, ROUND(SUM(sal),0) &quot;Sum&quot;, ROUND(AVG(sal),0) &quot;Average&quot; FROM emp GROUP BY deptno; This should put you...

Part and Inventory Search

Back
Top