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 Mike Lewis 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: hdog
  • Order by date
  1. hdog

    You can't go to the specific record error

    I too am having the same problem, error 2015 - Can't go to specified record. I developed the db for a customer over 4 years ago and they have had no problems. Now when I try to add a record via a subform I get the error. This is with the exact same db. I am wondering if an access 2000...
  2. hdog

    Multiple Inserts With Checkbox Values

    I have created an asp page in dreamweaver using jscript that dynamically creats checkboxes from an access db table. Each checkbox has a unique name and a unique value. The names are always in a series and are named "cb1" through "cb20" and the values come from a corresponding db table. I have...
  3. hdog

    CDOSYS Problems

    I looked over the link you sent and still can't figure out what is going on. I added some code to give a better description on the error and now get the following info: Microsoft VBScript runtime error '800a01a8' Object required: 'myMail' It looks to me like my variable 'address' is not...
  4. hdog

    CDOSYS Problems

    I have written some code to send an email from the server using CDOSYS. When I put a static email address in for the myMail.To= command it works fine but if I try to address a string from a variable (built from a recordset) I only get error '8004020f'. I have tried all I can think of but can't...
  5. hdog

    Newbie Help for VBScript

    Found the problem! My connection string was pointing to the wrong place!! It's always the simplest things that trip me up. Thanks for the help!
  6. hdog

    Newbie Help for VBScript

    The variable MM_kradb_STRING is assigned in another asp include file referenced prior in the code. The rate_type_numRows=0 is generated by Dreamweaver and is always in the code. The problem seems to be in the variable: Replace(rate_type__mm_var, "'", "''") + "" The server logs show nothing...
  7. hdog

    Newbie Help for VBScript

    I am new to VBscript and am trying to pull a record using a variable (numeric) from another record. I keep getting an error and don't know enough to know how to fix it. I am using dreamweaver to build the script. Can someone please help? Here is may code: <% Dim rate_type__mm_var...
  8. hdog

    Paypal IPN Verification

    Thanks for the reply jemminger! Do you have any sample code you could post in jsp?
  9. hdog

    Paypal IPN Verification

    I am building a verification page that will post back the IPN string from Paypal as one part of the validation process. I am writing my code in jscript which is embedded in an asp page. I am stumped on how the page automatically posts the IPN string back to Paypal. I found some code on the...
  10. hdog

    PayPal IPN Woes

    There's that darn ";" again! It must be getting changed with this text box. Let me try putting it in without the http.... This is from PayPal...
  11. hdog

    PayPal IPN Woes

    I'm not sure where the mystery ; came from but it is not in my URL string that I posted. Looks like it was a typo. Here is what paypal is posting to my asp page...
  12. hdog

    PayPal IPN Woes

    I have been trying to get perform a validation on my page which receives a URL string from PayPal IPN and then reposts the string to PayPal with an additional variable appended to the end of the string. I am supposed to get a "Verified" response back but instead keep getting back a "Invalid"...
  13. hdog

    Conditional Display of Text

    Never mind, I figured out my mistake. I was comparing to "True" when it should have been "1". Here was the final code: <% if(report_fields.Fields.Item("do_not_contact").Value=="1"){Response.Write("Do Not Contact"); } {Response.Write(""); }%> Ths simple things can sometimes seem so difficult...
  14. hdog

    Conditional Display of Text

    Sorry if I didn't explain in sufficient detail...let me try again. I have an access database with a table of records. One field in the table is a boolean (true/false) field. I am creating a recordset in my asp page that pulls data from the access table and displays it on the asp page (ie...
  15. hdog

    Conditional Display of Text

    Javascript contained in an ASP page.
  16. hdog

    Conditional Display of Text

    I described the db value as a checkbox value but really meant it was a true/false field. Sorry for the confusion. I know this is simple but just seem to be having a mental block!
  17. hdog

    Conditional Display of Text

    I am trying to look at a checkbox value in an access database and if False show no text and if True show static text. I have written the following code but can't get it to work. The code is pulling the true or false checkbox value from the db since I can get it to display on page. Can you...
  18. hdog

    SQL Woes

    That was one of the first things I tried to no avail. Any other suggestions?
  19. hdog

    SQL Woes

    I have written an SQL statement that works fine in MS Access (as a query) but when I move it into my ASP page as a new Dreamweaver recordset definition it does not work. Dreamweaver is giving me an error stating that "Missing ),] or item in query...
  20. hdog

    Dreamweaver layer only shows in certain browser version

    I have created a layer in Dreamweaver. The layer does not show in IE6 but does show in IE5. How do I make this display in both versions.

Part and Inventory Search

Back
Top