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

  • Users: wwworg
  • 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

    Its all good Thanks for your concern
  4. wwworg

    Drop-down list freeze

    Thanks for your reply It is the same thing disabled = "true" or disabled = "disabled". It does the same thing. Also it is not an input type, its a select <select class="tx" name="applstatus" <% if (empRole == false) { %> disabled = "disabled" <% } %> > } <%= mad.getApplStatusOptions()...
  5. 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...
  6. wwworg

    Caps Conversion

    I know there is a .toUpperCase() and .toLowerCase(), but I want the first character of every work as Uppercase and rest lower. any thoughts
  7. 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
  8. 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...
  9. wwworg

    Date format conversion

    Hey guys, thanks for an interesting discussion I used to code submitted by sedj but it is now setting df to null. This very strange here is the code <%! public String changeDateFormat(String str) throws java.text.ParseException { SimpleDateFormat df = null; if (str != null) { String...
  10. wwworg

    Date format conversion

    Hey guys I have tried to do this if (str.indexOf("-") == 5) { SimpleDateFormat df = new SimpleDateFormat("yyyy-M-dd"); java.util.Date tDate = new java.util.Date(); tDate = df.parse(str); df = new SimpleDateFormat("dd-MMM-yyyy"); String date1 =...
  11. wwworg

    Date format conversion

    Yes, I understand that, but there will also be some dates in (dd-mm-yyyy) format that I also want to convert to (dd-MON-yyyy). So I believe I need to a way to find out the format of incoming data parameter. So if incoming date is (yy-mm-dddd) then do SimpleDateFormat df = new...
  12. 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")...
  13. 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...
  14. 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
  15. wwworg

    Method in JSP

    Sorry man. I should have thanked you. I find this a great way to learn new stuff. You guys are just awesome. :) Thx
  16. 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...
  17. wwworg

    jsp editors??

    Hey guys well i got it finally But the code completion function aonly applies to html??? why is that. It doesnt apply for scriptlets?????
  18. wwworg

    jsp editors??

    Ok, thanks guys I have installed it and tried to open a .jsp file in it It opens but there is no coloring or code completion. Do I need to install a plugin for JSP????

Part and Inventory Search

Back
Top