Search results

  1. A

    undo changes to a from issue

    I have a form with an undo button which works fine...sometimes. the issue is if the user hasn't clicked out of the text box they have updated before clicking the undo changes button only the changes they have made to that text box are un-done. my question is when the user clicks the undo...
  2. A

    Bookmark not working

    Hi, i have a form with a nested subform that are opened from a mainform. When the user selects a specific record on the main form i want the form to open and the subform to display the selected record. I am using the below code on the load event of the form: when i first run it it works! the...
  3. A

    Go to specific record in subform

    Hi, I have a main form and a nested subform. The main form is based on customer details and displays customer name and the customer primary key (custID). When this form is opened i pass two parameters to it, BPID and SIID. A BP is a business picture and a SI is a sales interaction. These are...
  4. A

    Close mainform from subform

    I have subform withina main form that displays records. I have a save and close button on the subform that when cliked i want to close the mainform thereby saving the record. However i cannot get the main form to close. this is my code, any help? If Me.Dirty = False Then MsgBox "No...
  5. A

    Pop-up form to display current datasheet record

    I have a sub form in datasheet view that displays all of a customers related records. I have set a double click event on one of the subforms fields thats opens the selected record in a popup form. I currently have this working using openargs (recordID) I want the user to be able to use the...
  6. A

    add record via seperate form

    Hi, I have a sub form that is based on a 2 table query. The query brings together details from a customer details table and a customer businesses lines table The tables are linked on the Primary key Customer ID field (a customer can have many lines) with the business line table also having...
  7. A

    Add new record to subform using custom input form

    I am working on a database for storing customer information The basic structure is: CustomerDetails Table (PK CustomerID, unique number) with a one to many relationship to CustomerBuisnessLines (PK BuinessLineID, Autonumber) linked on CustomerID with a one to many relationship to...
Back
Top Bottom