Search results

  1. W

    Validation rule

    The field in form should has the same rule what creating folder in Windows. So Field shouldn't get sign like "| \ / : * ? " < > " What I need to write in validation rule? I saw help but there are no information about my problem:/ I can't have: Is Null OR Not Like "*[!((a-z) or (0-9))]*"...
  2. W

    VBA to chhange properties

    I have form with 5 text boxes: 1) Date 2) A 3) B 4) C 5) D When I'll open form, Date field has Enabled status "yes" but others fields have enabled status "no" I need vba which I put in to "after update" Date field, vba should change the enabled status of the rest of the boxes (A, B, C, D) from...
  3. W

    vba for realtions between tables

    I found code to fill a table from form using button (blank field in a form) and it works for first field in form Private Sub Save_Click() Set dbs = CurrentDb Set rst = dbs.OpenRecordset("name of table") With rst rst.AddNew !name field in a table = Me![name field in a form] rst.Update .Close End...
Back
Top Bottom