Recent content by DOMINIC KENBUNGO

  1. D

    FORMS DESIGN IN MS ACCESS

    Ex
  2. D

    FORMS DESIGN IN MS ACCESS

    Dear all, How can I design a form to include 'on screen help' of the 'sample' data expected in a field. Something like this:
  3. D

    Adding Data with Unbound Forms in Microsoft Forms

    Hallo. A database is to capture data to a table (in the same database) using an unbound form. In the attached database, AddContact form is to capture data to contact table. Kindly assist me debug in this code. On trying to run this code an error message displayed is:
  4. D

    ENABLE DISABLE CONTROLS IN A FORM

    Thanks. This solves my database question.
  5. D

    ENABLE DISABLE CONTROLS IN A FORM

    Thanks. This work fine. Kindly rewrite the code if the command is enabled if text11 value ranges from 18-35. Outside this range the command remains DISABLED.
  6. D

    ENABLE DISABLE CONTROLS IN A FORM

    Thanks. This solves my problem. How can this code be rewritten so that the control is only enabled if text11 has values ranging 18 to 35. OTHERWISE THE COMMAND BUTTON REMAINS DISABLED.
  7. D

    ENABLE DISABLE CONTROLS IN A FORM

    Hallo, Thanks for reply. On trying to implement your suggestion get this error: What is to be done in this case.
  8. D

    ENABLE DISABLE CONTROLS IN A FORM

    Hallo, Thanks for reply. 1. We are intending to toggle command14 either enable or disabled depending on the result computed and displayed in text11. 2. text11 is computed using the expression =DateDiff("yyyy",[DOB],DateAdd("m",6,Date())) which returns an integer value. 3. I have tried...
  9. D

    ENABLE DISABLE CONTROLS IN A FORM

    Hi all. A form is designed with button disabled using the form's ONLOAD EVENT. I need to ENABLE this button using the AGE value computed in textbox TEXT11 if the age value is between 18 and 35. I have tried this but it doesn't work. Private Sub Form_Current() If Text11.Value < 18 Then...
  10. D

    Hallo everyone.

    Hallo everyone. I am from Kenya. I love coding. I intend to be an active member in this forum.
Top Bottom