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: cyberprof
  • Order by date
  1. cyberprof

    Problems writing a function

    Is 'Exists' a keyword in some way
  2. cyberprof

    Problems writing a function

    This might seem wierd, but I've been trying a few different options and I've got it working just be changing TSExists to TSE Doesn't make sense!!!
  3. cyberprof

    Problems writing a function

    OK, I've changed it totally boolean and I passed a manual date through the function TSExists("12/01/05"), but still the same error.
  4. cyberprof

    Problems writing a function

    There should always be a value in 'dte', but I will try.
  5. cyberprof

    Problems writing a function

    Same error, "Type Mismatch
  6. cyberprof

    Change background colour of table cell?

    When I click on the hyperlink 'Change' the word 'Blue' appears, but the background colour doesn't change
  7. cyberprof

    Change background colour of table cell?

    Thanks, I'll give that a try
  8. cyberprof

    Problems writing a function

    I'm trying to write a function to place in a loop I want to pass a date through the function to return a true or false value This is what I have so far.. ------------------------ Do until rst.EoF dte = rst("Date") IF TSExists(Dte) = "True" THEN Do this ELSE Do this END IF...
  9. cyberprof

    Change background colour of table cell?

    Is it possible to dynamically change the background of a table cell when you click on a hyperlink within that cell, without refreshing the page? Cheers J
  10. cyberprof

    Hyperlink/Input Box question

    Thanks, that has worked. Sorry about this, I just got lost with all the examples, and the number of changes I had made. I really appreciate the help J
  11. cyberprof

    Hyperlink/Input Box question

    I've gone back to <a href="#?<%=thisdate %>" onclick="fillBox(this.href); return false;"> and changed to function fillBox(str) { var targ = document.forms['formname'].elements['textfieldname']; targ.value = str; } Now the whole URL is appearing in the text box
  12. cyberprof

    Hyperlink/Input Box question

    I had to change the value in your example as the calender is dynamically created from onclick="fillBox('01/01/04'); return false;"> to onclick="fillBox('<%=thisdate %>'); return false;"> but the value was lost
  13. cyberprof

    Hyperlink/Input Box question

    I'm carrying out my tests at http://e-v.no-ip.info/calender.asp
  14. cyberprof

    Hyperlink/Input Box question

    Just hit a problem. When I move back and forward to other months, I carry forward the year and month in a querystring value. calender.asp?M=12&Y=2004 "M=12&Y=2004" is now forming part of the link in "#?" Any ideas how to stop that happening, or is that an ASP thing.
  15. cyberprof

    Hyperlink/Input Box question

    Works fine. I've changed: <a href="page.asp?06/01/2004" onclick="fillBox(this.href);">Click Me</a> to <a href="#?06/01/2004" onclick="fillBox(this.href);">06</a> The input box fills OK, and the link remains inactive. Thanks J
  16. cyberprof

    Hyperlink/Input Box question

    You have a good point regarding the link taking you to another page. That doesn't have to happen. All I need is the date value from the calender to the input box
  17. cyberprof

    Hyperlink/Input Box question

    OK. I'll give it a try. Cheers
  18. cyberprof

    Hyperlink/Input Box question

    Not sure if this is the right place to ask this question. I've got a calender on a webpage, each date on the calender is a hyperlink with the date value in the link. (e.g. a href="page.asp?06/01/05"> When I click the date on the calender, how can I dynamically populate an input box on the same...
  19. cyberprof

    HTML and VB

    Thanks. Really appreciate the help. J

Part and Inventory Search

Back
Top