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: *

  • Users: rkfox
  • Order by date
  1. rkfox

    xml validation in Internet Explorer

    I am trying to use IE 6.0 to validate an XML document. It seems to work ok when I use a DTD but always says validation successful when I try it with a Schema. Even when the data or schema has been deliberately altered to be incorrwect. In fact IE returns a sucessful message if I try to validate...
  2. rkfox

    ie 6.0 validating XML

    I am trying to use IE 6.0 to validate an XML document. It seems to work ok when I use a DTD but always says validation successful when I try it with a Schema. Even when the data or schema has been deliberately altered to be incorrwect. In fact IE returns a sucessful message if I try to validate...
  3. rkfox

    Using variable contents as a variable

    How can I use the contents of a variable as a variable name? I think I can but can't think of the right syntax. IE: variable var1 has the name of a field I want to update (CEMarkDatemessage) in it Can I do this by using var1 somehow? CEMarkdateMessage = "Date invalid...
  4. rkfox

    Date value NULL and Access-2000/97

    This seems to work for me: If LEN(Request.Form("AusApplicationDate")) = 0 then ' if Blank set to NULL strSQL = strSQL & ", AusApplicationDate = " & "Null" & "" end if
  5. rkfox

    How to deal with checkbox data type?

    If you are writing ASP code, you can't access the checkbox with the document object - that is in the browser object model! You access the Value attribute of the checkbox like this - Request.form("Checkbox1") Checkbox1 is the HTML name of the form field! This will let to get the...
  6. rkfox

    Outlook Express error

    Here it is: http://support.microsoft.com/search/preview.aspx?scid=kb;en-us;Q258034 Hope this helps -- it let me fix the problem!
  7. rkfox

    Browser type detection

    It seems that I heard once that the Browser Capabilities doesn't tell you if it is turned off for the specific browser installation - only if that browser supports Javascript. Just a guess!
  8. rkfox

    Passing Two values in Subroutine

    I think you might need to put quotes around ID in this code: is this field coming from a form? or a URL parameter? What does this reference? Request(ID) If it is just the variable you set above then you don't need the Request, it doesn't appear.
  9. rkfox

    Outlook Express error

    Thanks so much for the input. I finally found and corrected the problem. Evidently the Registry entries for my identities had gotten corrupted somehow (no idea how!) and they needed to be deleted and then reentered. I used regedit to delete them and then started Outlook Express and filled them...
  10. rkfox

    Outlook Express error

    Thanks for the reply. I looked at the links but it appeared to me that these were for different errors than the one I am getting. Is there any good way to delete and reinstall Outlook Express -- I am thinking that maybe this might help?
  11. rkfox

    Outlook Express error

    I tried it and it seemed to do something but unfortunately still have the same problem. A few seconds after Outlook Express starts up the above error message comes up and the program shuts down. This seemed to start after I received a message with an attachment and a reurn reciept requested on...
  12. rkfox

    Updating multiple records in one shot

    What do you want to update the records with? Where is the data coming from? You can update the records either using a SQL Update command or loop thru the records using the record set command Update.
  13. rkfox

    strSQL1 ="SELECT * FROM "& doc &" WHERE number=" &am

    Have you did a response write to see what is actually in the SQL string that you are creating? that is the first thing I would try - that way you can see what is actually being generated abd sent to the database and you can probably figure out why it isn't working if you see what is actually...
  14. rkfox

    Outlook Express error

    I hope this is the proper forum to ask my question about a problem I am having with IE and it's email Outlook Express. I have recently started to have a real problem with email using Outlook Express and hope someone can give me an assist. I am running IE 6.0 and Outlook Express 6.0. It...
  15. rkfox

    Access Date Field Clearing

    i have tried that but get a "data type mismatch in criteria expression" error what would the code look like to change it to null I am using a SQL Update command like this to construct the SQL command. The bottom half works if I have a date in the form field but the top half gives me...
  16. rkfox

    error checking in ASP

    Thanks I will give this a try. Do you know if all ADO errors show up in the ERR object? Thanks
  17. rkfox

    Access Date Field Clearing

    How does one clear a Date/Time field on an Access data base. IE. there is a date in the field already, the user clears the field on the related form and wants to clear the data base field. I can recognize that they cleared it on the form but what do i have to send to the data base to clear the...
  18. rkfox

    error checking in ASP

    I am writing an ASP application using ADO (naturally) for DB access with an ACCESS database. I am somewhat confused about error checking and the various ASP options - When I want to see if an Insert or Update db access worked Which error object should I use ? The ERR one i.e. err.number...
  19. rkfox

    IE6.0 View Source

    Thank you! thank you! thank you! I looked at the sites you mentioned and on one of them I found a tip to delete the cache temporary files. I did this (it took a long time so there must have been a great many of them) and now view source WORKS normally!!!!

Part and Inventory Search

Back
Top