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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by froggerIII

  1. froggerIII

    Displaying Server Time on webpages

    how about write the server's time to the client like charles said, and create a javascript Date object, serverTime, with it; but use the client's time to count seconds and such by using the javascript setTimeout method to increment serverTime. However you want to display it is up to you (in a...
  2. froggerIII

    JSP tags

    http://jakarta.apache.org/struts/ http://java.sun.com/products/jsp/taglibraries.html ray rheindl@bju.edu
  3. froggerIII

    query string for an include file

    in say, stdheader.asp: Sub Header(title) 'close the asp tag (i don't know if tektips will mess it up 'write whatever html you want to, or don't close the asp 'tag and use response.write 'open asp tag response.write title 'close asp tag 'or i guess you could do <%=title%> instead of adding...
  4. froggerIII

    Startup problem

    hey thanks a bunch, sorry for taking up your time, i hadn't thought to look at the microsoft site ray rheindl@bju.edu
  5. froggerIII

    Startup problem

    on startup, no matter what user logs in, an explorer window pops up to the system32 folder. it's not in any of the startup folders, and it is not in the registry under hkey_local_machine\software\microsoft\windows\currentversion\run like a lot of other startup stuff is it is getting stinking...
  6. froggerIII

    Hercules geforce mx2 32mb

    yep, I got mine running a couple months ago. using XFree86 4 and the NVidia drivers. Nice, except for i had to manually edit the XFree86Config file in order to get things working ray rheindl@bju.edu
  7. froggerIII

    Hercules geforce mx2 32mb

    I have open linux also, and I installed linux with my old pci card. Unfortunately, getting my hercules card to work I found out would be quite difficult. If you go to the nvidia web site and go to the linux drivers page, you can find out how to get the card working. Not only do you have to...
  8. froggerIII

    Formatting the time for the client machine location?

    do you mean, converting a date you are using with asp to client side vbscript or javascript? ray rheindl@bju.edu
  9. froggerIII

    getting a remote computer's name

    thanks, i'll take a look at it ray rheindl@bju.edu
  10. froggerIII

    Need help, look at my problem

    janerussel, why don't you do something like this, dsi's suggestion was really good, you just put it in your code wrong. do this instead Private Sub CmdData_Click() Open &quot;a:\test.dat&quot; For Input As #1 Open &quot;a:\testout.dat&quot; For Output As #2 Dim intResponse...
  11. froggerIII

    Need help, look at my problem

    you can't pass &quot;*&quot; and &quot;-&quot; to basReplAster, it only takes one parameter ray rheindl@bju.edu
  12. froggerIII

    disable security prompt when closing window

    sweetleaf, I would like to be able to do the same thing too, but as far as I know, you only have rights to close windows that you have dynamically created. I was thinking that maybe for ie, you could somehow write an activex object that automatically does a keypress or mouseclick to close that...
  13. froggerIII

    document.form.submit to email automatically

    put the onload=autosubmit inside your body tags: <body onload=&quot;autosubmit();&quot;> ray rheindl@bju.edu
  14. froggerIII

    getting a remote computer's name

    I am an intranet web developer, and am working on a project where we would like to know who is using the application. Currently, we are just getting the ip address of the remote host, using asp server variables. However, it has been requested that we get the name of the remote host (in the same...
  15. froggerIII

    Using a variable with an Interdev SELECT statement

    strSQL = &quot;SELECT * FROM Security WHERE UserID = '&quot; &amp; UserID_var &amp; &quot;'&quot; this should work when including variables in an SQL statement, strings must be surrounded by single quotes, but numbers don't have to be ex: &quot;SELECT * FROM table WHERE name = '&quot; &amp...

Part and Inventory Search

Back
Top