Search results

  1. rhernand

    View/Update Form

    Each combo box record source is a table, Dept table, Div table, etc. The column count is two; DeptID, Deptname.
  2. rhernand

    View/Update Form

    I have an Employee table and sometimes needs to be updated if an employee moves to another department. I wrote a query that will select all of the employee's data. I want to use a View/Update Form that will display the employee's data, Department, Division, Cost Center, etc. However, each of the...
  3. rhernand

    Delete Children

    RI Worked Great thanks RI Worked Great thanks
  4. rhernand

    Delete Children

    I have a Form that I use to view records from a Main Table. The records have an Autonumber. I also have a Remarks Table that contains remarks for each record in the Main Table. The records in the Remarks table records also have an Autonumber for each remark and save the Autonumber for the Main...
  5. rhernand

    Form to insert to table

    Worked Great Thanks Worked Great Thanks
  6. rhernand

    Form to insert to table

    I have a Form that I use to insert records to a table. The STATE field is not on the Form, but needs to be populated on the table based on the TOWNCODE field that is on the Form. If the TOWNCODE entered on the Form is > 20 then the STATE is 2, else the STATE is 1. How can I do this?
  7. rhernand

    Search Query in a Form

    I problem is the table data. Not all the columns I am serching on have data(empty). This is Jon's last statement: "Unfortunately, the Like operator cannot return Null values. So when the text box or combo box is left blank, it fails to return all the records if the field happens to contain Null...
  8. rhernand

    Search Query in a Form

    oooooooooooohhhhhhhhhh I now understand that I can not have empty columns in a table for a search. I have put a default of "Unknown" on all text fields and 0 for all numeric fields. Thanks
  9. rhernand

    Search Query in a Form

    I have a Search Query based on a Form. It does not retrieve any columns from the table if any column is empty. Why? I thought the & "*" would find all records. SELECT DISTINCT LITE.OWNER, LITE.LAMP_SUFF, LITE.LAMP_NUMBER, LITE.TOWN_CODE, LITE.ACCT_NO, LITE.STR_NAME, LITE.STR_DESC...
  10. rhernand

    Header and Footer not showing

    I did have Page header footer, instead of Form Thanks
  11. rhernand

    Combo Box items in a Lookup Query

    I have a Combo Box based on a table list on a Form. I want to choose several items from the list to feed a Lookup Query. Can this be done? :rolleyes:
  12. rhernand

    Header and Footer not showing

    I created a Form with a Header and Footer. When I see it in Form View, it only displays the Detail records. Why?
  13. rhernand

    Text Box

    Thanks again
  14. rhernand

    Text Box

    Nevermind, I missplelled Me.TxtEmpNum=Me.cboEmployee.Column(3), should have been Me.cboxEmployee. Thanks it works fine
  15. rhernand

    Text Box

    I had forgotten that, it was Column(2) that I wanted. However, I still get the compile error. Is the Text Box bound?
  16. rhernand

    Text Box

    I have a Combo Box driven by a query which has hidden columns in the combo. I have created text boxes that I want to populate with these hidden columns. In the AfterUpdate of the Combo, I have Me.TxtEmpNum=Me.cboEmployee.Column(3), but I get compile error: 'Method or member data not found'. Is...
  17. rhernand

    Table was designed wrong

    Why are the text boxes bound to the fields in the Incident table? The insert of the Employee table data to the Incidents table is done with a Command button with a .AddNew on the Click Event. Can I just add a .Fields ("EmployeeNumber") = cboxEmployee.Column(3) to the event. (did not work) If I...
  18. rhernand

    Table was designed wrong

    Still having problems The (1) combo based on the Employee table to select the relevant employee is already there. In the query used to drive the combo, I have included all the data I want to store, EmployeeNumber, Department, Cost Center, Location, etc. and made these as hidden columns in the...
  19. rhernand

    Table was designed wrong

    I have this Access application. The Incidents table was created incorrectly. apparently the design was not thought over. The Incidents table was created to store employee accidents. However, since the employee data is based in nicely normalized data, all Incident reports will have the employee's...
  20. rhernand

    Form and Report Titles

    Yes, that would be good
Back
Top Bottom