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

    Select records from between two times?

    Don't worry about answering this one... I used the Convert() function to change all the appropriate values to the same type so they could be compared.
  2. T1M

    Select records from between two times?

    Hello, I am looking for help with an SQL Problem. I have two times and I would like to pull records out of the table where one column's value is between the two times. The table column is SQL Server 7.0 datetime. Currently the value in the table is (date + time) where the date is set to...
  3. T1M

    PGP SDK SERVICE ERROR ON STARTUP

    I had the same problem. It turned out to be my "Client for Network" had be removed and PGP wouldn't start. Once I put the Microsoft Client for Network back on, it worked fine.
  4. T1M

    Prevent an External JS from being used if it doesn't load quickly

    Hello, I was wondering if any one can help me with a buggy external Javascript. I am running an included javascript that uses "document.write" to print a series of news items (general syndicated news, like Moreover) but sometimes it won't load. I would like to add a javascript timer so...
  5. T1M

    ASP Sub problem: My Sub is in a different asp page can't be called

    Your suggestion worked. Any idea why it didn't work as Server.Execute and <!--#include file=&quot;inc_html.asp&quot;--> was fine? T1m
  6. T1M

    ASP Sub problem: My Sub is in a different asp page can't be called

    I have a few Subs in one file that do things like write the headers and footers of my page. I want to separate them from my code so I have put them in another page (inc_html.asp). I get an error when I try to use: <% server.execute &quot;inc_html.asp&quot; Call WriteHeader %> I am here. <% Call...
  7. T1M

    Can you send an email with just JavaScript?

    I need to know if you can send an email using just javascript? Any suggestions?
  8. T1M

    Expiration Problem

    I may be a little over-simplifying the problem, but couldn't you make the <input type=&quot;text&quot;> on the ID field into <input type=&quot;password&quot;>. This would prevent it from working with the back button. Tim
  9. T1M

    Getting the href from one frame and viewing it in another

    Thanks Victor. It's too bad it won't work. Tim
  10. T1M

    Getting the href from one frame and viewing it in another

    Yeah, my form name is &quot;formgo&quot;. Tim
  11. T1M

    Getting the href from one frame and viewing it in another

    I have a page with two frames. The top one has a button that when pressed, I want it to get the url of the bottom frame. The problem is that I want to use the bottom frame to navigate to other sites and domains. Frameset: <frameset rows=&quot;20%,*&quot;> <frame name=&quot;topbar&quot...
  12. T1M

    Can I add a blank record to the end of my record set?

    Thanks for your help, Tim. I am going to have to do some work in my application design rather than on my data to find an answer to my problem. Tim
  13. T1M

    Can I add a blank record to the end of my record set?

    I think I can do this: SELECT name, id FROM CONTACT UNION SELECT NULL as name, NULL as id FROM CONTACT But, I want to do this for all columns that I select. I may be selecting 20+ columns or using &quot;SELECT *&quot; and if there were a way to iterate through the columns... If anyone has...
  14. T1M

    Can I add a blank record to the end of my record set?

    I need to create the SQL that will select all rows from a table and will add an additional empty record to the end. I will be using the results in ColdFusion (though this likely will not matter, it may be helpful information). SELECT NAME, ID FROM CONTACT WHERE NAME LIKE 'T%'; What do I need...

Part and Inventory Search

Back
Top