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

    CSS column widths with scrolling table

    I should have known it was something like that. When I remove the left & right padding, all is well. Thank you very much for the help. As for the Firefox comments, those are due to my using sample code to get the scrolling table to work. I just left the FF stuff in there so *ideally* the tables...
  2. mcpeekj

    CSS column widths with scrolling table

    Yes, sir. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> I'm already using jquery for some modals on the pages, so I might end up looking into using a jquery plugin for the scrolling tables with locked header rows, but I'd rather just get...
  3. mcpeekj

    CSS column widths with scrolling table

    I'm having trouble with column widths on a scrolling table not honoring their CSS widths. Here is the HTML: <div class="tableContainer"> <div class="innerframe" style="max-height: 390px;"> <table cellspacing="0" cellpadding=0 class="datatable"> <thead> <tr> <td...
  4. mcpeekj

    Compaq laptop intermitettently freezes, thaws

    Maybe it is a temperature issue. I can't even get a reinstall of Windows or a reformat to complete before it freezes up. Any advice? My motherboard apparently doesn't offer a temperature check in the BIOS. And now I've half-way done a reinstall of Windows, then a reformat, so I obviously can't...
  5. mcpeekj

    Compaq laptop intermitettently freezes, thaws

    G0AOZ, It did not occur while in Safe Mode, but it did occur occassionally while trying to enter Safe Mode (sometimes on the initial Compaq loading screen). I used several apps to identify any outdated drivers and updated them, but it still occurred (thinking it could just be a display driver...
  6. mcpeekj

    Compaq laptop intermitettently freezes, thaws

    Thanks for the advice guys. I've gotten credible advice that it's probably either a hard drive issue or OS. So I'm going to reinstall Windows and see if that helps. I don't think it's an overheating problem as the fan comes on regularly. But I had suspected the same thing and looked for the...
  7. mcpeekj

    Compaq laptop intermitettently freezes, thaws

    Hello all. I have a Compaq nc6220 laptop which performed great until about a week ago after a reboot following a Windows Update. It will now run fine for 5-10 minutes (longer if it has not been used for hours). Symptoms After some time, the screen appears to freeze and won't respond to the...
  8. mcpeekj

    Array of an array

    ...because it's a 2-dimensional array. I knew it was going to be something fundamental. Thanks Lee, works like a charm.
  9. mcpeekj

    Array of an array

    I'm trying to loop through an array and create another array with only the rows where a phrase exists. gmmastros was kind enough to help me with the instr to do the search, and it works great when I'm doing anything but trying to create and populate another array. Here's the code. dim...
  10. mcpeekj

    Sorting an array on multiple dimensions

    I started out with the nested recordsets, but the performance was absolutely terrible. That's why I switched to arrays. Any other ideas? (or how I can get the array into a fake recordset?)
  11. mcpeekj

    Sorting an array on multiple dimensions

    I started out with the nested recordsets, but the performance was absolutely terrible. That's why I switched to arrays. Any other ideas? (or how I can get the array into a fake recordset?)
  12. mcpeekj

    nested if else statement within another if else statement

    I'm having trouble figuring out your logic. You check to see if the radius is NOT 100, and if it's not check to see if it's NOT 50, then check to see if it's NOT 30. If it's NOT 30, you then set it to 30. If it's NOT 50, you set it to 50. Same for 100. Can you not check to see if something...
  13. mcpeekj

    Sorting an array on multiple dimensions

    Got another one for you guys... I have some client activity data in a MSSQL db. Unfortunately the clients are references by codes and the translations are only available in another MSSQL db on a different server (don't ask). So my solution to this is to dump the translations into an array...
  14. mcpeekj

    Wildcard search in an array

    Beautiful! Works like a charm. Thanks George!
  15. mcpeekj

    Wildcard search in an array

    I have a little loop that will search for a string inside of array elements. It works fine when I search for a string that is the entire element. But I need to search for a string inside of the element. How can I do a wildcard search? I've tried using %, * and ?, all to no avail. Doesn't appear...
  16. mcpeekj

    How to add hard breaks in text email

    In a text email, I believe "\r\n" will return a new line. So if you want a blank line, you'd use "\r\n\r\n". Joe
  17. mcpeekj

    What happened to Response.Flush?

    Not that this would be a lot of help, but I'm using IIS 6 and response.flush is working fine for me. The only thing I've done is set the buffer = true, same thing you did.
  18. mcpeekj

    SQL inconsistencies - ASP

    Yes, that makes sense, thank you very much. Movenext is working. One last thing (and I know it's loop related as I'm recalling my intro to programming class, just can't remember the solution)... I have this query looping through 3 different databases right now (it will be up to 100 databases)...
  19. mcpeekj

    SQL inconsistencies - ASP

    Thanks George. I obviously need to work on my loops. Unfortunately, now I get stuck in some kind of infinite death spiral where IE locks up and takes up all my CPU. The query is only looking at no more than 1,000 records in this case. Any thoughts on that? Thanks
  20. mcpeekj

    SQL inconsistencies - ASP

    Hello all. I have an ASP page (vbscript) that takes a date range as parameters and plugs them into a SQL query. The goal of the query is to bring back activity in the date range, grouped by day. The query works great in Query Analyzer, but doesn't work correctly in the ASP. When I put in the...

Part and Inventory Search

Back
Top