Results 1 to 7 of 7

Thread: VBSCRIPT create objects

  1. #1
    Senior Member
    Join Date
    Sep 2003
    Posts
    279

    VBSCRIPT create objects

    Hey can anyone point me to a website or just give me a list of command to create an object in VBSCRIPT?

    I would like to be able to create an object such as a "timer" for my web site.

    Many Thanks
    -Spools
    AntiOnline Quick Forum Version 2b Click Here
    10010101000000110010001100111

  2. #2
    Here are some good VB Code sites

    http://www.freevbcode.com/
    http://www.vbcode.com/
    To look into the eyes of a Wolf
    Is to look into ones own soul

  3. #3
    Senior Member
    Join Date
    Sep 2003
    Posts
    279
    thanks, thats great. are there any that specialize in VBScript, not just VB?
    AntiOnline Quick Forum Version 2b Click Here
    10010101000000110010001100111

  4. #4

  5. #5
    Senior Member
    Join Date
    Sep 2003
    Posts
    279
    thanks
    AntiOnline Quick Forum Version 2b Click Here
    10010101000000110010001100111

  6. #6
    Try one of these:
    http://mikecaldwell.com/VBINDEX/vbscript_list.html
    http://www.codeproject.com/asp/webtimer.asp

    Implemented in version 5.0

    Timer

    The Timer function returns the number of seconds that have passed since midnight (12:00:00 AM).

    Timer keeps track of the seconds to at least seven decimal places of accuracy. So, you can use Timer as a "stop watch" to find the start and finish times of an operation. Then simply display the difference to find the elapsed time. However, for very short elapsed time periods, the difference may displayed as zero.

    Code:
    <% =Now %>
    <% =Timer %>

    Output:

    10/27/99 2:14:36 PM
    51276.99
    To look into the eyes of a Wolf
    Is to look into ones own soul

  7. #7
    Senior Member
    Join Date
    Sep 2003
    Posts
    279
    thanks
    AntiOnline Quick Forum Version 2b Click Here
    10010101000000110010001100111

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •