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 Wanet Telecoms Ltd 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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. cRODEEkrank

    Records not saving to table from form

    I have a form in my database which uses a select query as a data source. I was receiving &quot;Recordset not updatable&quot; error messages so I changed the Recordset type to &quot;Dynaset(inconsistent updates). The form seemed to run OK but the data isn't saving out to the tables despite...
  10. cRODEEkrank

    Troublesome Record

    I have quite a strange Access problem. I have a database which has a user form which accepts information on creating a contract with a particular contractor. The form seems to be working except when one particular contractor is selected from the drop-down menu. Typically the user selects a...
  11. cRODEEkrank

    Form closes without saving data

    I have a form which is bound to a table. There are fields on the form which can accept only numerical data and have the validation set in the underlying table. However, if the data entered in the form doesn't meet the validation rule, it closes without saving the record to the table. Although I...
  12. cRODEEkrank

    Parameter Query Error

    I'm trying to run a query that asks the user to enter a year. When I enter this data, I get the following error message: &quot;This expression is typed incorrectly, or is too complex to be evaluated. For example, a numeric expression may contain too many complicated elements. Try...
  13. cRODEEkrank

    Problems Filtering Form Data

    Currently I have a form where users enter appropriate information in the fields. When they're finished, they can click a command button which will open a payment request form with some of the same data on the form. I have the following code to apply a filter: 'Refresh records: DoCmd.DoMenuItem...
  14. cRODEEkrank

    StreamTokenizer Problem - EOL getting confused with EOF

    Hello, I'm writing a program that is reading text file contents from a client into a server program. The text file has student grades listed on a separate line. I'm using a LineNumberReader()in the client program to read the line, then am writing the line to the server. I'm using a...
  15. cRODEEkrank

    Problem using DataInputStream

    Hello, I'm building a client/server application in which the client sends the contents of a text file containing student grades over to the server. The server is reading with a DataInputStream object using the readInt() method. The problem is, the integers its reading in are different from the...
  16. cRODEEkrank

    Capturing and Storing Form Values in Table

    Is there a way in Access 2000 to capture the value selected in a combo box and place it in a specified field within a table? I tried using the &quot;SetValue&quot; method but I keep getting an error.

Part and Inventory Search

Back
Top