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 strongm 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: *

  • Users: wwworg
  • Content: Threads
  • Order by date
  1. wwworg

    Remote desktop error

    Hey guys I am using a remote desktop to connect from windows 2000 machine to Windows XP machine Now I have all the info I need to connect but when I try to login, it says " You interactive login privilege is disabled, please contact the admin". Can this be fixed??
  2. wwworg

    Onclick Event of HTML Button

    Hey guys When I make a button in HTML and put some Java code in the "onclick" event. When I load the form, the code in "onclick" events gets executed, even though I have not clicked the button. How come??? Here's the code [code] <BUTTON TYPE=button Value = "Click" ID=toggler ONCLICK="<%...
  3. wwworg

    Drop-down list freeze

    Hey guys I have a dropdown list in HTML How can I freeze that drop-down list so that the user cannot change (meaning cannot select any other item from the list). I have used the disabled "true", but this is causing a little problem for me. So I was wondering maybe anyone knows about any other...
  4. wwworg

    Caps Conversion

    hey guys Is there a function in Java that can convert a string in "ALL CAPS" format to a string in proper format . for example I have a string as "PHYSCHO PATH" and I want to convert it to "Physcho path" Thanks
  5. wwworg

    SQL related problem

    HEY GUYS I am running a select statement. Here it is String query = "SELECT UNITNO, UNITNAME FROM Deprartment WHERE DeptID ='" + dept + "'"; db.executeSelectQuery(query); return db.getActionResult(); now db.getActionResult() returns a 2-dimensional String array. What I want to understand...
  6. wwworg

    Date format conversion

    Hey guys I am using tomcat 5.5, J2SE 1.5 with Oracle 8i Here is a function I have that converts a date like (18-06-2006) to (18-JUN-2006). <%! public String changeDateFormat(String str) throws java.text.ParseException { SimpleDateFormat df = new SimpleDateFormat("dd-MM-yyyy")...
  7. wwworg

    Right Outer join (sql92 - Oracle)

    Hey guys I have a sql statement that contains an inner and outer join, but when I run that sql statement it gives me an error on "oj", saying "Non supported SQL92 token at position: 217: oj" . I was running this sql statement agaibst Oracle 8i. So I guess oracle doesnt like "oj". This is the...
  8. wwworg

    Call a method fro several JSP scripts

    Hey guys I have like 5 .JSP scripts. I have declared a method in one of these 5 scripts, but I need to be able to call this method from all 5 .jsp scripts??? How can i do that. Thanks
  9. wwworg

    Method in JSP

    Hey guys I am very new to JSP. I wanted to declare a method in JSP code, but its giving me an error. Error is org.apache.jasper.JasperException: Unable to compile class for JSP. An error occurred at line: 76 in the jsp file: /jsp/test20.jsp Generated servlet error: Unhandled exception type...
  10. wwworg

    free jsp editor????

    Hey guys I am looking for a jsp editor that is free and have code completion functionality. I know eclipse does that. But is eclipse free??? I was on there website and it seems they allow you to download the evaluation version for 30 days or so??? I will appreciate if someone can confirm that...
  11. wwworg

    Date conversion problem

    Hey guys How can I get a month as "FEB" in java??? I know I can get the current date by Date today1 = new Date(); and then get the current month using int thisMonth = today1.getMonth()+1; but this returns a number like "2" for Feb. Is there anyway to retrieve a string like "FEB" instead of...
  12. wwworg

    Error on Insert sql statement (Date field)

    Hey guys I am running jsp scripts using Tomcat 5.5 and Oracle8i. I am getting an error while running an insert statement error is "javax.servlet.ServletException: ORA-01843: not a valid month" Now this is occuring on the date field. Please note that I am simply inserting hardcoded dates in...
  13. wwworg

    error on inserting a Date field in Oracle 8i

    Hey guys I am having trouble inserting a record into oracle using JSP. The error is related to the date fields. The exact error is "javax.servlet.ServletException: ORA-01843: not a valid month". Now here is how I am making the date Date today1 = new Date(); int thisDay = today1.getDate()...
  14. wwworg

    Oracle Date Field (Error on Insert)

    Hey guys I am having trouble inserting a record into oracle using JSP. The error is related to the date fields. The exact error is "javax.servlet.ServletException: ORA-01843: not a valid month". Now here is how I am making the date Date today1 = new Date(); int thisDay = today1.getDate()...
  15. wwworg

    The Network Adapter could not establish the connection?

    Hey Guys I am trying to deploy a java web application on tomcat 5.5. I am using Oracle 8i and JDBC connection. I am also uding J2SE 1.5. I cannot open the application, the log in tomcat shows the following error "java.sql.SQLException: Io exception: The Network Adapter could not establish...
  16. wwworg

    jdbc location in Tomcat

    Hey guys, I am using Oracle 8i, tomcat 5.5 and J2SE 1.5 I have downloaded the JDBC driver for Oracle. It is classes.zip, some people say I just need to rename it to classes.jar and copy it in Tomcat shared/lib directory. Is this all I have to do???? I dont have to unzip the classes.zip...
  17. wwworg

    jsp editors??

    hey guys I am looking for a jsp editor It would be perfect to get a jsp editor which has code-completion feature and is free?? can you guys think of any??? if not then any other good ones that are free?? Thanks

Part and Inventory Search

Back
Top