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

    Reading files from a folder

    Does anyone have any code that will let an ASP read files from a folder in the website? Also, how can one read the folder structure? I am trying to read the files underneath a folder where users can upload their own files and also create subfolders. Thanks.
  2. mdr2271

    Response Buffer Limit Exceeded

    I am trying to write to an Excel file from an ASP page, but get the Response Buffer Limit Exceeded error message. The file has 5200 records in it. Is there a setting I can change to allow this to open without error?
  3. mdr2271

    Formatting Text and Dates in Excel Output

    I am writing some output to Excel on an ASP page and was wondering how to format the field in Excel to be text vs numeric. Our ID numbers are of the format 0000123 and are a text field. When the field is exported to Excel it shows up as 123 and not 0000123 like we need it. Also, how can you...
  4. mdr2271

    Highlight Row on Hover

    Both of those ways work. Thank you very much.
  5. mdr2271

    Highlight Row on Hover

    Here is a very simple bit of code to see if this works (still doesn't for me): <html> <head> <title>Untitled</title> </head> <style> .tablerow:Hover {background-color: #CCCCCC} </style> <body> <table border="1"> <tr class="tablerow"> <td> test </td> <td> test </td> </tr> <tr...
  6. mdr2271

    Highlight Row on Hover

    If I have a class of .tablerow how I would make the background color of the whole row change to #CCCCCC when one hovers over any cell? I have tried things like .tablerow:Hover {background-color: #CCCCCC} .tablerowHover .tablerow Hover and none seem to work.
  7. mdr2271

    Finding Images

    Can anyone tell me of some sites that they use to find images for use in web designs? I am willing to pay for them, but would rather pay a few dollars per image vs $100 or more that I have seen on some sites.
  8. mdr2271

    Images

    I know this is probably not the correct forum, but I couldn't find one that dealt with this so I apologize in advance. My question is can anyone tell me of some sites that they use to find images for use in web designs? I am willing to pay for them, but would rather pay a few dollars per image...
  9. mdr2271

    PDF Utility

    Does anyone know of a good PDF creation utility that works with ASP (not ASP.NET, but ASP)?
  10. mdr2271

    SQL Group By Question

    I am running a Group By query where I count the number of records per category per ID#. What I would like to have my results set show is that if a particular ID does not have a value in a particular category then it will show as 0. For example, I create the following table, populate it and...
  11. mdr2271

    Image Mapping

    I have a header div made up an 800 pixel wide header graphic. An organization logo is in the first 200 pixels or so of the header and the group wants me to set it so that when a user clicks on the logo it will take them back to the home page of the site. This would function just like a...
  12. mdr2271

    Changing a Column Size/Type

    Is it possible to directly change a column's type or size in a SQL table once it has been created?
  13. mdr2271

    CSS generated page tabs?

    How could you do theniteowl's example without using tables?
  14. mdr2271

    Evaluating a blank value

    I am assiging the variable varintdate to a field value from a recordset. I then evaluate it to see if it is blank or contains a value in an if then statement. However, when the value is blank or null it is not being evaluated properly. I have tried: varintdate = "" varintdate = null...
  15. mdr2271

    Form Field Reference

    Unfortunately I am taking over a 10 year old database that was developed bit by bit over time by different people that didn't follow any conventions.
  16. mdr2271

    Form Field Reference

    In Access 2002 how would I reference the field 'ID' in the form 'Main Sub1' in the before insert event? I want to have the code be something like: Private Sub Form_BeforeInsert(Cancel As Integer) Forms!Salutation1![ID] = Forms!Main sub1![id] End Sub It's been a long time since I've done any...
  17. mdr2271

    Reading Items for textarea

    I want to be able to allow users to enter in a series of ID numbers into a textarea and then be able to take those ID numbers and break them up into separate records. For example, in the textarea they would enter something like this: 0000234 0004532 0000291 0009873 I then want to be able on...
  18. mdr2271

    List spacing

    If I have the following code: <ul> <li>test 1</li> <li>test 2</li> </ul> and want it to look like * test 1 * test 2 where * is the bullet how would I do that?
  19. mdr2271

    List spacing

    How can I adjust the spacing between items using the <ul> tag?
  20. mdr2271

    Image Galleries

    Does anyone know of some good programs/asp components for the following: - Displaying a photo gallery dynamically from uploaded files - Creating thumbnails when uploading an image

Part and Inventory Search

Back
Top