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

    Outlook Contacts Linked to SQL Server database?

    Hi, I have SQL Server database that I want an Outlook client to connect to and retrieve a list of names/emailaddresses/phone numbers etc. from. Does anybody know if this is possible, and if so how I could do it, or where I could find more information on it. Thanks a bunch :)
  2. zippynz

    looping inserts

    Hi I am trying to loop through a comma delimited string of values and insert them into my sql 2000 database. I got some help for this from this thread http://www.sqlteam.com/forums/link.asp?TOPIC_ID=9921, but they dont seem to want to help me anymore! Ok this sproc is used to take all the...
  3. zippynz

    Selecting options in Netscape

    Ok I am using the following script to select an option from a select list in IE, what I would like to know is how to get it to work in Netscape This script is run from a spawned window, it either has a date passed to it or if there is not date it grabs todays date and uses that (what it is...
  4. zippynz

    Making a select box drop down on mouseover

    hi, is it possible to make a select box 'open' using a mouseover?
  5. zippynz

    getting the date accuracy better than 1 millisecond

    Hi, Just wondering if/how it is possible to get a date value more accurate than a millisecond? I am making a timer to see how long a page takes to load, and want to get as accurate as possible. Thanks
  6. zippynz

    Netscape and reading form select box

    Hi, I am trying to read the contents of a drop down select box in Netscape 4.7+ this is the script (which works in ie of course) that I am using function go(){ var index = frmChoosePeople.CountryID.selectedIndex var id = document.frmChoosePeople.CountryID.options[index].value...
  7. zippynz

    SQL Server 2000 Reference Books

    If you could have any 3 currently available books on SQL Server 2000 what would they be? I am going to be taking some MCDBA exams soon and need help choosing what books to help me study for it! Thanks a bunch :-)
  8. zippynz

    SQL Server 2000 Reference Books

    If you could have any 3 currently available books on SQL Server 2000 what would they be? I am going to be taking some MCDBA exams soon and need help choosing what books to help me study for it! Thanks a bunch :-)
  9. zippynz

    checking checkboxes (the saga continues)

    Hi, I have been using the following script for a while now and have had 0 problems (thanks to the guy who gave it to me, can't remember who it was) if(checkB(frmMain)) document.frmMain.submit() else alert('Please select at least one Bar') return false; } function checkB(frm){ var...
  10. zippynz

    best way to search a database?

    Hi, I'm just wondering what is the best way to search a database? I have allways used Access for my web projects and have just started using SQL 2000. I hear there is a way to search using index server? anyone done this before? what are your thoughts, comments advice etc.. ? Thanks :)
  11. zippynz

    comparing arrays

    Hi, I have two single dimension arrays: These are ID numbers arrOne(0) = 12 arrOne(1) = 12 arrOne(2) = 13 These are $ Values which belong to the above ID numbers arrTwo(0) = 20 arrTwo(1) = 30 arrTwo(2) = 40 What I need to do is search through the first array for duplicate ID numbers, when one...
  12. zippynz

    Dynamicaly filling more than 2 select boxes

    Hi, I have searched all over the place for info on how to dynamicaly fill a select box and I have found heaps on populating one box based on the results of another, however i reuire something a little more complicated than that! I need to dynamically populate up to 30 boxes on the fly, the data...
  13. zippynz

    Upsizing from access 2000 to sql 2000

    Hi, I have an access database which I need to convert to an sql 2000 database, I have set up msde on my machine and can use the acces 200 upsizing wizard to export it to msde (sql7), everything works fine (well a delete statement doesnt but im not concerned about that now) ok so I have had a...
  14. zippynz

    check to see if a number is whole (ie no decimals)

    Hi I am using a script to add up values of a form. the values are dollar variables, the first entry is for 20 cent pieces the second for 50 cents and so on (im from nz so yes we do have these values here) before the script adds up the amount worth i want to check to see whether or not the value...
  15. zippynz

    i have diabled the ctrl key, except....

    hi I have "assembled" this script to disable the use of the ctrl key, however it doesnt only disable the ctrl key, it disables all keys! it is run by having onKeyDown in the body tag of the doc, it only needs to run in IE and it is just so people can't open a new window, function...
  16. zippynz

    adding up form values and disabling non numeric and decimal keys

    Hi, I am using this script to add up the contents of a form, It works great except it won't accept a decimals input. That is because a friend disabled all other characters, what I need to do though is enable the decimal key so it will allow you to enter a decimal, thanks in advance :) function...
  17. zippynz

    checking if a checkbox has a value

    Hi I am trying to check to see if a check box has a value, the checkboxes are built from an asp script, there can be as many as 1 to 10 boxes and they all have the same name, when i submit the form i want to check to see whether at least 1 of the boxes have been checked, if it hasnt i want to...

Part and Inventory Search

Back
Top