How to disable a Text Box in ms access when other text box valu="Yes"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jyothish8807
    New Member
    • Apr 2014
    • 1

    #1

    How to disable a Text Box in ms access when other text box valu="Yes"

    Hi,

    I want to disable Textbox2 when Textbox1="YES".
    This "yes" value will be fetched from database Query table and not manually entered.
  • Robin25
    New Member
    • Apr 2014
    • 22

    #2
    if Textbox1.text = "YES" then
    Textbox2.enable d = False

    Comment

    Working...