Search results

  1. L

    updating next record

    are they on the same table or two different tables? I know you said a form is based on a table but does the form has a subform?
  2. L

    populating items on a form in VB

    docmd.runsql sql = append query
  3. L

    Export to text file

    Open a form in design mode, view code, then click on help, ask it for OpenAsTextStream method Study this: The OpenAsTextStream method provides the same functionality as the OpenTextFile method of the FileSystemObject. In addition, the OpenAsTextStream method can be used to write to a file...
  4. L

    simple query question

    create a query, drag all fields, put under the field -not null . If you ask the help button in MS access "The clip" You wont have to post here, saves you time.
  5. L

    Deleted record, need audit trail w/userid

    Create a DELETE table with fields user name, date of deletion, and all the data deleted ( one per field or you can create a memo field that would keep the whole record - (Name = Smith, Amount = 22,etc) Before you run the delete querry, append it first to the table. For the username function...
  6. L

    can someone please help me

    You are the only who would know what else you want in your database. You can always add another field and update it should a requirement comes up.
  7. L

    Weird Problem viewing a report

    Are you using a reference that might not be checked with this user? Have you tried uninstalling and reinstalling MS Access to his computer. Just an idea, won't hurt to try, right?
  8. L

    Advantage Database Server

    Has anyone tried using MS ACCESS with Advantage database server?
  9. L

    Hello. I'm New and I have a question.

    You have to assign recordset to the table then update the recordset field to whatever the total is. Ask the clip for recordset update.
  10. L

    For the programmers

    Idea A cut out from one of my programs. I hope this helps you somewhat. Public Sub parse() Dim excel_app As Object Dim excel_sheet As Object Dim rowvalue As String, colvalue As String, combined As String Dim row As Integer, column As Integer Dim trailer As String Dim v() As String...
  11. L

    Corrupt MDE Database

    MDE, Corrupt Database, Front End, Back End, Never Ending Problem/ CALLING PAT HARTMAN I have a database that both have a back and front end. I may not know what I am doing so please bear with me if you think I am a bit ignorant. I made my front end database an MDE so users won't alter the...
  12. L

    Duplicate Entry

    Create a query that would show sample phone number together with the record ID Number. Use that query to open a recordset. if the count of the recordset is > 0 then msgbox "There is a duplicate entry See list?" else continue update. Put the above procedure in Before Update. IF yes, see...
  13. L

    Memo on a front end database form

    Thank you.. so much THE JACK COWLEY. You are the MAN! Kiss! Kiss!
  14. L

    Memo on a front end database form

    I have a front end and back end database. The form is in the front end and the table is in the backend database. The field is of memo type. When I enter data using the table, everything is fine. When I enter it through the form however, it is truncated. Help.
  15. L

    Sort with condition

    If the only value is X and Null, you may sort the query by descending. The x values would come first. Either that or I do not understand your problem.
  16. L

    Selecting records from a very large table

    Is there a criteria or is this random selection?
  17. L

    Please! Please! Please! Help Me! I desperate!!!

    FIrst create a crosstab query using the orders table. ID- Group By Date-Order- Last or Maximum then link the products table to the Crosstabbed table.
  18. L

    Calculated Query using date field

    iif()
  19. L

    Calculating Total Time

    datediff()
  20. L

    Update data after actual Print of Report

    I have created a label report of names, address of records that True value for field called MailThis(?). After I print this label report I would update the boolean field called FinishPrint. Which event do I put the code for the update? I could create a message box after deactivating the...
Back
Top Bottom