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

    thanks a bunch, I will try that out tomorrow :)
  4. 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...
  5. zippynz

    Making a select box drop down on mouseover

    I think that kind of solution is getting a little to complicated (it is after all simply a form!!) I think it might just be easier to click, but If you do come across something I would be very interested :) Thanks!
  6. zippynz

    Making a select box drop down on mouseover

    thats actually has quite an interesting effect... I may well use that on something else... what I really wanted was to make the effect like when you normally just click on it thanks anyway :)
  7. zippynz

    Making a select box drop down on mouseover

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

    getting the date accuracy better than 1 millisecond

    its not going to be used on the client it is to be used on the serverside (in asp) I am fine tuning an application and want to get it as good as I can, maybe I'm being picky but thats just me :)
  9. 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
  10. zippynz

    Netscape and reading form select box

    Yup you are right it needs document in there, it also need to be document.forms I figured it out just after i posted but couldnt get back on the net! Thanks for your help
  11. 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...
  12. zippynz

    Want Every Column Different Colors

    This is what I use.. <% alternate = 0 for i = 0 to uBound(arrayName,2) if alternate = 0 then color= &quot;red&quot; alternate = 1 else color= = &quot;blue&quot; alternate = 0 end if %> <tr> <td bgcolor=&quot;<%=color%>&quot;><%=arrayName(0,i)%></td> <td...
  13. 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 :-)
  14. 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 :-)
  15. zippynz

    checking checkboxes (the saga continues)

    and once again it works like a charm! thanks guys :)
  16. 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...
  17. zippynz

    best way to search a database?

    umm how do you create an index on the fields?
  18. zippynz

    best way to search a database?

    well i have a table with a whole lot of numeric fields which need to be searched through and also stings of text. Using the LIKE operator is how I would do it, but apparently it is not that efficent
  19. 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 :)

Part and Inventory Search

Back
Top