Recent content by wolfwrz

  1. W

    Help with yes / no box or OK / Cancel box

    I have a command button that I want to display a warning before it functions. I want it to pop up a are you sure warning. then proccess only if the yes/ok is pressed or exit function if cancel/no is pressed. Thanks in advance
  2. W

    Clearing Check boxes

    Thanks
  3. W

    Clearing Check boxes

    Solved My own problem but got new one.... I need to know how to clear multiple check boxes from the same table with one button.. IE similar proceedure but multiple check boxes
  4. W

    Clearing Check boxes

    Here is the code that I am trying to run via a button press.... Dim dbs As Database Dim sql As String Set dbs = CurrentDb sql = "Update Master set EKG REQUIRED = 0" dbs.Execute (sql) Master is the Table EKG REQIRED is the Check Box. I am still getting the Syntax Error in...
  5. W

    Clearing Check boxes

    Fixed that problem now I am getting a sytax error from my lines sql = "Update Master set IMMUNIZATION(S) = 0" dbs.Execute [sql] Master is the table and imm is the checkbox Thanks
  6. W

    Clearing Check boxes

    I am getting a User defined type not defined error also. It hangs on the first line. Thanks
  7. W

    Clearing Check boxes

    Check Boxes Wayne Thanks.... This will clear the entire table right... What if the form when opened filters the table to a subset and I want to just clear the subset... Thanks in advance
  8. W

    Clearing Check boxes

    Help please... I have a form that pulls records out of a table... It is a repeated form. I want to clear all the checkboxes of a certain type IE the following command. ME.Checkbox.Value = "no" This command works but only for the selected record on the form. I cant clear all the checkboxes of...
Back
Top Bottom