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 DaveGerard

  1. DaveGerard

    Problem with If VALUE <> VALUE2 THEN

    >>sql=select * from table where value='&quot;& value2 &&quot;'&quot; >> >>and then went if value1 <> value2 then >>&quot;data is invalid&quot; So is the field named value or value1? Didn't you just want to check to see if there were any matches and if not display your message? Maybe I'm...
  2. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    Hey BullSchmidt I like the bar charts on your site. I thought of that same thing a few years ago, but I was going to have it span the last 30-31 days, like for sales trends and performance. I thought that maybe it wasn't going to be quick loading and started looking into graph generators. How...
  3. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    Sorry it took so long. I had to tuck the wife in...haha. She's pregnant and can hardly stand the late hours any more. >>I'd like to have the NEW icon only show up if a record is no more than an hour old. Well, here ya go. I had to think about this one for a minute. Let me know what you think...
  4. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    For starters you'll need to call the images for &quot;severity&quot;. If they are named like you said, all you have to do is the following: <img src=&quot;severity<%=rs(&quot;Severity&quot;)%>.gif&quot; border=&quot;0&quot;> =============== For the space under the dropdown move the form tags...
  5. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    What are the 4 images for severity 1-4? Can you post a link to them? Dave
  6. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    Your <option> inside the loop also says &quot;All&quot;... <%if MyApplication = &quot;All&quot; then%> Rather it should say <%if MyApplication = rsApp(&quot;Application&quot;) then%>
  7. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    One more thing. You can get the dropdown to display the option that you are currently filtering by doing the following to both the &quot;ALL&quot; line and the looped line... CHANGE: <% <option value=&quot;MultiRecords.asp?MyApplication=All&quot;>All Applications</option> <option...
  8. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    Ahh Slakker!. I see you got it figured out. Just refreshing your screen and saw you had it working prety good. Cool routine do you think? Dave
  9. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    Let me explain that last one further. If the record has a status of some severity, and I'm assuming that it's either Severe or Not Severe. Then it should be a Yes/No DataType. If there are different severity levels like 1 through 5 then the field should be numeric using 1 through 5 and the...
  10. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    Oh yeah. DataType for images should probably be Yes/No (formatting set to true/false). CHANGE: <td width=&quot;13%&quot; align=&quot;center&quot; bgcolor=&quot;#ECECFF&quot;><font face=&quot;Arial&quot; size=&quot;2&quot;><%=rs(&quot;Severity&quot;)%></font></td> TO: <td...
  11. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    Looks great. MultiReacords was just the name of the file that I used. Change your options as follows: FROM: <select size=&quot;1&quot; name=&quot;MyApplication&quot; onChange=&quot;if(this.options[this.selectedIndex].value!='$')...
  12. DaveGerard

    Path for #Include File

    Really? Explain this then... Active Server Pages error 'ASP 0130' Invalid File attribute /login/LoginProcess.asp, line 1 File attribute '/connect.inc' cannot start with forward slash or back slash.
  13. DaveGerard

    help

    Yeah, help you solve what problem? You had a sentence that said you could delete files and that it happens. What do you want to do, delete or not delete? If not, try renaming your file as you upload it to something distinct like filename_timestamp.jpg or something.
  14. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    Almost forgot. I have the column headings (HTML) within the recordset loop as I do the data columns, however it is only displayed once as I am counting records as I loop. I put the row with those headings inside the loop rather than outside the loop because as data gets longer and stretches...
  15. DaveGerard

    Some help on ASP pages with MS Access DB backend pls

    As promised, here it is. You can use images instead of new, status, and severity columns. I'm assuming that those columns are Yes/No columns. I usually set the format for those to True/False as it is more similar to MsSql Server's &quot;bit&quot; data type, which is 1/0 (true/false). I believe...

Part and Inventory Search

Back
Top