Search results

  1. J

    Run Time Access

    Bob, thanks for the response. We hid the tables and hope that this is enough. We had to distribute the product. We will get back to this when time permits. Thanks again for the response.
  2. J

    Run Time Access

    We have an MS Access DB that we want to restrict user access to data and only allow them to use the forms. We tried to use Run-Time access but not could make it work. Does anybody have any instructions on how to make the Access run-time work or is there any way to hide the tables. Thanks for...
  3. J

    I need to know the first line of a matched Query

    I will be glad to provide, after the storm passes. For now, it works. Thanks Again for all the help.
  4. J

    I need to know the first line of a matched Query

    There is no difference in orders. I cheated, I have written a quick VBA program to mark the record when the customer changes. I did not want to do this because I would have to change the program when fields change. But at least, for now, I got pass this. Thanks for the effort.
  5. J

    I need to know the first line of a matched Query

    Thanks for trying. I was afraid that was going to be the answer, but I had to try. Thanks for the help.
  6. J

    I need to know the first line of a matched Query

    I have two files that match on customer number and order number. Is there a way that I can identify the first line matched. For example, Customer 1 has twentry orders. I will get twenty lines of data. Is there a way to "mark" the first Order. Can not do on order number because order numbers are...
  7. J

    Updating tables fields indirectly

    The files are close images of each other. There is only one field that was different - an error field. When the record was read, it was edited. If there was an error, the record was copied to a new table, the error was described and deleted from the original table. This is what the copying...
  8. J

    Updating tables fields indirectly

    I am copying from one table to the other. I just got it to work. I used the rst3.Fields(dFieldName.Name) = rst.Fields(dFieldName.Name) construct. Thanks for the help
  9. J

    Updating tables fields indirectly

    I have two tables. I have to copy one to the other using individual field names. I do not know the field names This is what I have done Dim dFieldName As Field For Each dFieldName In dbs.TableDefs!tblOracleARFeedBackErrorsRpt.Fields rst3!dFieldName.Name =...
  10. J

    Get TCP address

    Thanks for the help.
  11. J

    Get TCP address

    Is there a way to get the tcp address on which MS Access is running. I need to insure that the MS Access program can only run on a particular server. Thanks for the help.
  12. J

    XML Import/Export Access 2003

    When I import an XML File, I get these Tables 1. BSR 2. Sender 3. DateTime 4 Operamt 5. FOB 6. FTTerm 7. plus 16 others. I can update the files in access, but when I get ready to export to XML, how can I put the all the files back in the same order? Thanks in advance for helping
  13. J

    Data ?Type conversion Error

    Thanks for all your help. I gave up and decided to "just get the job done" This is what I did dbs.Execute "Delete * from tblInvoices where trim(Invno) <> '" & Trim(Str(Me!txtInv)) & "'" Thanks again.
  14. J

    Data ?Type conversion Error

    I am sure. I have "debugged" and seen that the passed parm have a value. I have changed the query to select nulls only (is null) and I get nothing back.
  15. J

    Data ?Type conversion Error

    I am trying to execute a query that has a parameter. I have defined the parameter as "double" in the query(PARAMETERS SelectedInv IEEEDouble;). This is my VBA Code Dim qdfParm As QueryDef Dim ParmInv As Double ParmInv = Me!txtInv Set qdfParm = dbs.QueryDefs("qryRemoveAllInvoicesExceptSelected")...
  16. J

    Designing Reports

    All, I would like to find report design ideas. Creating the reports, using subreports, etc is not the problem. I would like to see reports designed by others to see what looks "good". I am sure that my designs need desperately to be changed, but I do not know what to change. Basically, I would...
  17. J

    EDI 850 Transactions

    It is an EDI purchase order transaction sent to the vendor as oppoed to received from a customer. It has very stringent format requirements. Most of the time is spent on getting the format correct. Thanks for asking
  18. J

    EDI 850 Transactions

    I need an Access Db that creates outbound EDI 850 transactions. I am mainly interested in not having to recreate the tedious record format. I would appreciate any help. Thanks for your consideration.
  19. J

    MS Access Excel Automation Will Not Close

    When the attached abbreviated code is run for the first time, it leaves Excel screen open. I have been told to clean up the code. The problem is that I do not know what to clean up. Any help would be appreicated. Thanks
  20. J

    Close and Reopen Access Application

    Thanks. I will try your solution. Closing the app may cause user problems when more than one use is using the app. Thanks Again.
Back
Top Bottom