Search results

  1. E

    Writing form value back to a field in a table.

    I need to make use of this value multiple times so it would be extremely helpfull if I could write it back to a table.
  2. E

    Writing form value back to a field in a table.

    I have a form called Account with the following fields on it as textboxes which pull values from an underlying table called Account. OriginalBalance TerminMonths DiscountFactor Additionally there is another textbox called PaymentDue which has the following formula under the Control Source...
  3. E

    Writing form value back to a field in a table.

    I have a form called Account with the following fields on it as textboxes which pull values from an underlying table called Account. OriginalBalance TerminMonths DiscountFactor Additionally there is another textbox called PaymentDue which has the following formula under the Control Source...
  4. E

    Help with Cascading Updates/ Relationship problems

    Pat thank you for your reply and sorry for not responding sooner, I went ahead and moved my managers into my employee table but the next problem that comes to mind is now I have a many to many relationship. A department can have 1 to many employees and An employee can manage 1 to many...
  5. E

    Help with Cascading Updates/ Relationship problems

    and the ER diagram
  6. E

    Help with Cascading Updates/ Relationship problems

    Here is the Form
  7. E

    Help with Cascading Updates/ Relationship problems

    I have several tables as follows. Department DepartmentID(Primary Key) DepartmentName(Text) MgrEmployeeNumber(Text) Foreign Key from Manager Table. Manager MgrEmployeeNumber(PrimaryKey) LastName(Text) FirstName(Text) Employee UserEmployeeNumber(PrimaryKey)...
  8. E

    Fire event with table only

    If you need to fire an event upon inserting a record into a field its time to upgrade to SQL Server 2000
  9. E

    Autonumbering and Foreign Keys

    Thanks for your help Tim. I moved the data to a backup table, made a new table with the Autonumber field, imported the data into my new table, changed the foreign keys from text to number, and reset the relationships and everything works perfectly now. Thanks again for your help.
  10. E

    Autonumbering and Foreign Keys

    I have several tables as follows. Department DepartmentID(Primary Key) DepartmentName(Text) MgrEmployeeNumber(Text) Foreign Key from Manager Table. Manager MgrEmployeeNumber(PrimaryKey) LastName(Text) FirstName(Text) Employee UserEmployeeNumber(PrimaryKey)...
  11. E

    Help With Combo Boxes

    This link is neccessary since a managers first and last names are fed to the employee form from the managers table.
  12. E

    Help With Combo Boxes

    ERD Diagram Here's the ERD Diagram which didn't make it here the first time around.
  13. E

    Help With Combo Boxes

    I'm working on a Access Database to manage different employees in a company. I have 5 different tables but the important tables are Managers, Employees, and Departments. A manager can manage one to many employees and departments, and a department can have one to many employees. I have a form...
Back
Top Bottom