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 TouchToneTommy 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 DenverMarc

  1. DenverMarc

    Problem with onmouseover function

    Thank you for the kind and tactful comments about my code. However, your beautiful code still does not solve my problem - the image doesn't change if you move quickly between thumbnails, even thought the text does. I'll look elsewhere for a solution.
  2. DenverMarc

    Problem with onmouseover function

    Hello, I'm using an onmouseover and onmouseout event to change the image and text of one div when I hover over some thumbnails in another div. It seems to work fine if I move the mouse somewhat slowly from one thumbnail to another, but if I move the mouse quickly, the text changes but the...
  3. DenverMarc

    Ignore Case in validation

    Perfect! Thanks Kaht. Marc
  4. DenverMarc

    Ignore Case in validation

    Hello, I'm pretty new to javascript. I have an asp form and I'm using javascript for validation. One text field, PromoCode, has this: function ValidUserInput() { if ($("PromoCode").value != "0508Test") } alert("The promo code you entered is not valid, please check your code and enter...
  5. DenverMarc

    Format email from Access Form

    Thanks everyone. Marc
  6. DenverMarc

    Format email from Access Form

    I'm not sure I follow what you all are saying. I don't have an attachment or report, I'm just trying to make the email itself be rich text. I don't have a "body" to change to "RTFBody". Thanks, Marc
  7. DenverMarc

    Format email from Access Form

    Thanks Najemikon, I was afraid it couldn't be done. Thanks, Marc
  8. DenverMarc

    Format email from Access Form

    Hi again, Any ideas anyone? Thanks, Marc
  9. DenverMarc

    Format email from Access Form

    Hi, Is it possible to make the body of an email created from an Access form Rich Text rather than Plain Text? I'm in Access 2000. Here's some of the code I'm using: Dim stText As String Dim stLists As String Dim stOrderNum As String Dim stMailer As String Dim stOffer As Variant Dim stNames As...
  10. DenverMarc

    Setting Priority in email

    That worked! Thanks so much. Marc
  11. DenverMarc

    Setting Priority in email

    Thanks, but still no luck. Again, I didn't get any error messages but the email was not flagged as high importance. Is it something different with CDO vs CDONT? Thanks, Marc
  12. DenverMarc

    Setting Priority in email

    Does anyone have another idea? Thanks, Marc
  13. DenverMarc

    Setting Priority in email

    Hi Damber, Thanks for the reply. Is there a particular spot I should place this? I added it first after "Mail.To" and then before "Mail.Send" and after "Mail.Send". I didn't get any error messages but the email was not marked in any way for priority. Thanks, Marc
  14. DenverMarc

    Setting Priority in email

    Hi everyone, I have an asp page that generates an automatic email. Is it possible to tag the email as "high priority"? Everyone recieving the email is using MS Outlook. Here's the code: <% Set Mail = Server.CreateObject("CDO.Message") Mail.From = request("SupportUser") Mail.To =...
  15. DenverMarc

    Recordset Paging using Alphabet

    Defining the first letter: <% Dim FirstLetter FirstLetter = Request("Initial") %> link for "previous" button: <% if lngPage>1 then%> <a class="pageselector" href="datacards.asp?initial=<% =FirstLetter%>&page=<% =lngPage-1 %>"><< Previous</a>&nbsp;&nbsp; <%end if%> link for "next"...

Part and Inventory Search

Back
Top