ivonsurf123
Registered User.
- Local time
- Yesterday, 17:24
- Joined
- Dec 8, 2017
- Messages
- 69
Hello,
I just can't figure out how to grey out the combobox when value chosen is "closed". combobox is set to have a value list in the resource type and the resource is "Open", "Closed"
	
	
	
		
 I just can't figure out how to grey out the combobox when value chosen is "closed". combobox is set to have a value list in the resource type and the resource is "Open", "Closed"
		Code:
	
	
	If Me.[Position_Status] = "Closed" Then
    Me.[Position_Status].Enabled = False
  Else
    Me.[Position_Status].Enabled = True
End If 
	 
 
		 
 
		 
 
		 
 
		 
 
		