I have a form on which i use a combobox and use Afterupdate
property on it..when i select value in combobox than relating fields changes its value...
After that i use afterupdate property to another combobox and put the code in event section of afterupdate property.The code is below.
//////////////////////////////////////////////
////////////////////////////////////////////////
when i have added above code than nothing changes on form. both afterupdate functions are not working.even i deleted the above function but the previous property is also not working.
kindly help me what i am doing wrong....
Thanks
Azhar Naeem
property on it..when i select value in combobox than relating fields changes its value...
After that i use afterupdate property to another combobox and put the code in event section of afterupdate property.The code is below.
//////////////////////////////////////////////
Code:
Private Sub Status_AfterUpdate() Select Case Me.Status Case "Closed", "Resolved" CloseDate.Visible = True Case Else CloseDate.Visible = False End Select End Sub
when i have added above code than nothing changes on form. both afterupdate functions are not working.even i deleted the above function but the previous property is also not working.
kindly help me what i am doing wrong....
Thanks
Azhar Naeem
Comment