Recent content by rhernand

  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?
Back
Top Bottom