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

  1. cRODEEkrank

    disable-output-escaping and doctype-system NOT WORKING

    I have the following XSL stylesheet: <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" omit-xml-declaration="yes" doctype-system="NimsNamePayload.dtd" doctype-public="NimsNamePayload.dtd" /> <xsl:template...
  2. cRODEEkrank

    Database Won't Open

    Hmm...sounds like a different problem than I had. I never resolved the issue I initially reported and had to rebuild the entire database. If anyone comes across a resolution of my initial problem stated above, it would be great to hear how to overcome it in case it happens again!
  3. cRODEEkrank

    Database Won't Open

    Thanks for your help. However, I've tried your suggestion and it still doesn't open. I can't even import its tables to a different database.
  4. cRODEEkrank

    Database Won't Open

    I have a very peculiar issue with Access. When I click on the file, Access opens but the database does not. When I try to File--> Open and select the database, nothing happens. I don't receive an error message, just nothing happens. I've tried to compact/repair the database as well as try to...
  5. cRODEEkrank

    Using Access Database Linked Table problem

    Currently I'm building an ASP application which is hooked into an Access database. In this database, some of the tables are linked to a separate Access database. Whenever I try to access the data within these linked tables, I keep getting an error as the application is trying to connect to the...
  6. cRODEEkrank

    Using ODBC Provider for Oracle from Microsoft

    Unfortunately I don't have (and can't have) access to the Oracle DB, so I can't create any views on it. I'm hoping for a solution where maybe my connection string is incorrect or something.
  7. cRODEEkrank

    Using ODBC Provider for Oracle from Microsoft

    I'm currently building an ASP application which interacts with a Microsoft database with linked tables to Oracle. I've created a connection string using the ODBC Oracle provider from Microsoft and I've received the following error: TNS:could not resolve service name Here's my connection code...
  8. cRODEEkrank

    Request.Form Problem/Question

    Thanks so much! It's working for me now. I looked at the HTML source and noticed the value attributes didn't have quotes in them - I made a false assumption they were there. A good lesson for me, that's for sure! :)
  9. cRODEEkrank

    Request.Form Problem/Question

    In my case then, how would I go about this? I don't have a 'value' attirubte for my select: <select name=&quot;fulltitle&quot;> ... </select> Then I am trying to obtain the value on the next page: titlename = request.form(&quot;fulltitle&quot;) I've tried the suggestion, maybe not correctly...
  10. cRODEEkrank

    Request.Form Problem/Question

    Thanks for the suggestion, but I'm still getting the problem. Actually, I'm not using the value directly but am first saving it to a variable: titlename = request.form(&quot;fulltitle&quot;) ...where &quot;fulltitle&quot; is the name of the <select> control on the previous screen. It's still...
  11. cRODEEkrank

    Request.Form Problem/Question

    Hi, I have a form which contains a select box containing publication titles. The user will select a title and click a submit button. On the next form, I have the following code: <% title = request.form(&quot;titlename&quot;) response.write title %> The problem is, only...
  12. cRODEEkrank

    Trying to Trap Error

    Oh, sorry...I abbreviated my code (it's quite a lengthy procedure) and just wanted to make sure the piece I had a question on was present. This is why it probably doesn't make much sense. I actually figured out the problem. In the VB editor in Access, I went to the menu option &quot;Tools ->...
  13. cRODEEkrank

    Trying to Trap Error

    Well that's the whole problem. The code isn't going to my &quot;TrapError:&quot; code at all. It encounters an error, but instead of going to the &quot;TrapError:&quot; error trapping, it just displays the standard Access error message, which is what I'm trying to avoid. I wonder if there's...
  14. cRODEEkrank

    Trying to Trap Error

    Mark, Nope, the error is still not trapping. I changed the &quot;TrapError&quot; code to : TrapError: msgbox &quot;Error number: & err.number & &quot; just occurred.&quot; ...and unfortunately the error still isn't trapping.
  15. cRODEEkrank

    Trying to Trap Error

    Thanks Mark. I'm not sure what recordsets error object you're referring to. I tried looking at all the objects and properties of the recordset and recordsets object, but couldn't find anything.
  16. cRODEEkrank

    Trying to Trap Error

    Hi, I'm building a database which tracks the # of minutes a person spent working on a specified task. I created an Access form which will accept their input. The form is unbound, but I created a procedure to bind the controls when the user wants to save their information to the database. My...
  17. cRODEEkrank

    Data not saving from MDE File!

    Thanks Rick for this information. I've done a lot of reading on creating MDE files and in all the resources I've used, there was never any mention of splitting the MDB first. As a result, whenever I made a change to the MDB and re-created the MDE, all the table data stored in the MDE was lost!
  18. cRODEEkrank

    Data not saving from MDE File!

    I have a database in which I've created an MDE file and saved this to a different directory than the database. However, the data which is entered into the MDE file isn't being saved to the MDB. If I have to make a change to the database, I re-create the MDE file but since the data isnt' being...
  19. cRODEEkrank

    Record-locking Question - Access 2000

    In Access 2000, there is a feature which allows row-level record locking which can be set at the application level (Tools -> Options -> Advanced). When forms are created, the RecordLocking property can be set to &quot;Edited Record&quot; which, according to Access help, locks pages of records...
  20. cRODEEkrank

    Records not saving to table from form

    Here you go: SELECT [Assignments - Writing].[CONTRACT ID NUMBER], [Assignments - Writing].CONTID, [Assignments - Writing].[PUB CODE], [Assignments - Writing].MODULE, [Assignments - Writing].[JOB NO], [Publication List].Publication, [Last] & &quot;, &quot; & [First] AS ContName, [Assignments -...

Part and Inventory Search

Back
Top