I am trying to use the following java script to validate information inside a <fieldset>
Here is the javascript code:
<code>
<script language="JavaScript">
function check_form(form)
{
return_boolean = true;
obj = eval(form);
for(i=0;i<obj.length;i++)
{
alert(obj.length)...
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...
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...
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,
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...
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,
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,
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
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...
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
This program was working now when I try to run it, it throws this error "NoClassDefFoundError", I looked on suns site, but don't understand what is missing. Here is the code:
// ---------------------------------------------------------------------------
// Import the packages used by...
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...
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..
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.
Here is the code for your problem:
SELECT job, ROUND(MAX(sal),0) "Maximum",
ROUND(MIN(sal),0) "Minimum",
ROUND(SUM(sal),0) "Sum",
ROUND(AVG(sal),0) "Average"
FROM emp
GROUP BY deptno;
This should put you...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.