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 bkrike 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: garfield11
  • Content: Threads
  • Order by date
  1. garfield11

    Link a list of mumber from a workbook to another workbook

    Hi all, I've a worksheet[number.xls] with a list of numbers 1 ~ 100 in Excel colums A. How do I link those numbers in a new worksheet [final_numbers.xls] having 5 Rows * 5 Colums format? Col A Col B Col C Col D Col D 1 6 11 16 21 2...
  2. garfield11

    Problem with reverse sort...

    Hi all, Can anyone pls help me with this: I got this codes &quot;orderby&quot; whereby when user clicks User Name (header) it will order by user name ASC. Title: View Users User Name (header) <-- when click, oderby ABC DEF GH Eh how can i reverse sort, means i clicks once, orderby ASC...
  3. garfield11

    Product listing A-Z and limit results entries

    Hi all, Can anyone help me with this. I had a page called viewProd.jsp and i wanna my page to work like this: Title: View Products ___________________________________________________ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z ___________________________________________________...
  4. garfield11

    Problems inserting value with commas in between

    Hi all, I have these 2 fields: Quantity(qty) and Total Price(total). I want to make my program to work as like when a user enters a quantity say 50, onchange it will auto compute the total price and also at the same time, if the amount is 4 digit say 1000 i want it to be displayed like this...
  5. garfield11

    creating a search page

    Hi all, I need to create a search engine for project using JSP but i'm new to that programming language. I want my search page to be like there's a text field for user to type in any letters/words and it will look into the database, find the matching query n display the results below(on that...
  6. garfield11

    Hi all, Here r my problems: I

    Hi all, Here r my problems: I want to display Contact Date, Company Name n Consultant Name from database table &quot;Contact&quot; which BizInitiative= 2002 Insight GOLDTM. This's my query: SELECT Contact.Contact_ID, Contact.Company_ID, Contact.Consultant_ID, Contact.ContactDate...
  7. garfield11

    Hi all, I have a drop down list

    Hi all, I have a drop down list with multiple selection. Let say I selected John,Mary and Johnny and saves into a database. When I click the edit button, how can I make the selected items highlighted? Example: Consultant Name: John <-- highlighted Jane...
  8. garfield11

    Multiple Selection Combo Box!

    Hi all, Here's my problem: I'd a form page called &quot;contactreport_add.asp&quot; and had a drop down menu to display all Consultants' names with multiple selection (extract from database table Consultants). Then I'd an action page called &quot;contactreport_add_proc.asp&quot; and I did...
  9. garfield11

    Order By ...

    Hi all, Here's my problem: How can I make my program to work like : - When I click on Contact Date it will order by date ASC? - When I click on Consultant Name it will order by name ASC? <u>Contact Date</u> <u>Consultant Name</u> 14/10/02 Jane 3/5/02 Alan Thanks...
  10. garfield11

    Radio Buttons

    Hi all, Below are 2 radio button to display either Contact type is by phone call or thru' meeting: <TR><TD valign=&quot;top&quot;>Contact Type ?</TD> <TD valign=&quot;top&quot;><INPUT TYPE=&quot;radio&quot; name=&quot;ContactType&quot; value=0 <% ' Check this radio button if...
  11. garfield11

    Problems with Checkboxes

    Hi all, Below r javaScript codes to check all/clear all checkboxes: <SCRIPT LANGUAGE = &quot;JavaScript&quot;> <!-- function SetChecked(val, chkboxname) { dml=document.forms[0]; len = dml.elements.length; var i=0; for( i=0 ; i<len ; i++) { if (dml.elements[i].name == chkboxname)...
  12. garfield11

    Calaculate Number of Days

    Hi all, I wanna calculate the number of days between 2 input dates. Below r my codes: function date(LeaveFrom, LeaveTo, DaysonLeave) { var x = new Number(new Date(LeaveFrom.value)); var y = new Number(new Date(LeaveTo.value)); DaysonLeave.value = (y - x)/86400000; } This code works only...
  13. garfield11

    Hi all, I have some problem with

    Hi all, I have some problem with dates so can anyone please help. Below r codes to convert eg. 15/2/02 --> 15th Feb 2002: function convDate(QDate) { var dayNum=new Array(&quot;1st&quot;, &quot;2nd&quot;, &quot;3rd&quot;, &quot;4th&quot;, &quot;5th&quot;, &quot;6th&quot;, &quot;7th&quot...
  14. garfield11

    Hi all, I'm new in JSP and total

    Hi all, I'm new in JSP and totally no idea how it works. So far I was able to load the driver and get a connection to the database already. That's great! Now the problem is I have created a package called &quot;myappli&quot; and placed it in C:\tomcat\webapps\ROOT. In it I created another...
  15. garfield11

    Date Problem...

    Hi all, I have got a problem. I wanna my program to work like as if user enter a date eg. 12/2/02 (dd/mm/yy) when onBlur the system will automatically convert to 12 February 2002 n also check for valid date format entered n also cannot later then today's date. Can anyone please help? Thanks...
  16. garfield11

    Hi all, Can anyone tell me how t

    Hi all, Can anyone tell me how to solve this error? Generated servlet error: C:\Tomcat4\work\Standalone\localhost\_\example2$jsp.java:82: Class org.apache.jsp.ResultSet not found. ResultSet rs = st.executeQuery(query); Thanks. Love_Garfield [gorgeous]
  17. garfield11

    Hi all, Anyone knows what this e

    Hi all, Anyone knows what this error means? org.apache.jasper.compiler.ParseException: /dbConnect.jsp(0,4) Invalid directive at org.apache.jasper.compiler.Parser$Directive.accept(Parser.java:218) at org.apache.jasper.compiler.Parser.parse(Parser.java:1145) at...
  18. garfield11

    JSP Database Connection problem.

    Hi all, I am new in JSP and I'm really stuck on this for a very long time. I have this code to load the jdbc driver :<% Class.forName(SQL.jdbc.driver.SQLDriver); %> but it results in this error. Is it correct to write in this way? Generated servlet error...
  19. garfield11

    Hi all, I am new in JSP and I'm

    Hi all, I am new in JSP and I'm really stuck on this for a very long time. I have this code to load the jdbc driver :<% Class.forName(SQL.jdbc.driver.SQLDriver); %> but it results in this error. Is it correct to write in this way? Generated servlet error...
  20. garfield11

    JSP!!!

    Hi all, I'm very new to JSP so while doing it I encountered problems and hope someone can help. First, I would like to know how can i connect to a database (Currently using Microsoft SQL Server 7.0)? Also, in JSP how to create a SQL query to select eg. name from a table called employee...

Part and Inventory Search

Back
Top