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. pamnanipayal

    compare exe with source code

    I have an exe file & source code seperately. I want to comapre whether that code belongs to that exe or not? Please help me out in verifying whether a this souce code belongs to a this exe file or not? If i form another exe from that source code & compare these 2 exe's then even if the code is...
  2. pamnanipayal

    Newbie - Action Mapping

    Hi, just check the Tomcat log files & the error message on the Tomcat console & then take the action. If not able to do, pls. let me know the error message. Payal
  3. pamnanipayal

    How do I make a date with Calender???

    Hi, To get the current date using calendar, u need to specify the time zone properly. u can refer to the documentation under GregorianCalendar in JAVA API. Either java.util.TimeZone or java.util.SimpleTimeZone classes are used to specify the tim zone. for the example the documentation under...
  4. pamnanipayal

    Struts - Multiple Selection in Combo box

    Please Help. I want to mark multiple values in a list box as SELECTED. in tag <html:select> the attribute value is a String. I can't even pass the String array, as it says type mismatch. Please let me know what to pass for value in the following tag <html:select property=&quot;serviceType&quot...
  5. pamnanipayal

    Struts - Multiple Selection

    Please Help. I want to mark multiple values in a list box as SELECTED. in tag <html:select> the attribute value is a String. I can't even pass the String array, as it says type mismatch. Please let me know what to pass for value in the following tag <html:select property=&quot;serviceType&quot...
  6. pamnanipayal

    Errors in jsp files

    If u are using Tomcat, all teh tag libraries .tld files need to be kept under <Tomcat root>\webapps\<application root>\WEB-INF & all these need to have corresponding entries in web.xml under <Tomcat root>\webapps\<application root>\WEB-INF. The entry in web.xml : <taglib> <taglib-uri>...
  7. pamnanipayal

    Calender in JSP

    u can use the following methods in a JAva class which needs to be included in the JSp. //Method to check the date format public static boolean checkFormat(String date) { char ch1,ch2; date=date.trim(); int len=date.length(); if (len!=10) { return false; }...
  8. pamnanipayal

    Tomcat JDBC Driver Oracle

    For Tomcat, use classes12.zip & tyrex-0.9.7.0.jar which are kept under Tomcat/common/lib Its better to use tyrex i.e Tomcat through its JNDI, otherwise it gives a problem getting connection. To use tyrex, your code should be /* This method is called by the Store to a get a DB connection. */...
  9. pamnanipayal

    Detecting a space in a string

    I think u should use a very simple method to detect string as follows: The input parameters are s - String in which character is to detected c - character to be detected. In your case, it is space &quot; &quot; // Function to remove the specific char. function removeChar(s,c) { var...

Part and Inventory Search

Back
Top