smtazulislam
Member
- Local time
 - Today, 10:59
 
- Joined
 - Mar 27, 2020
 
- Messages
 - 808
 
Hi,
I have a parent form what name is "frmEmployeeEdit". In the form have Tab Control 8 pages.
Some pages have Subform and some pages have Continuous Forms.
Exp:
One page name is "EmployeeIdentity_Page" and this page subform name is "PassportSubform"
Two page name is "Facility_Page" and this page Continuous Form name is "FacilitiesSubformEdit"
I try:
	
	
	
		
And next try:
	
	
	
		
it is work, but I dont want to hide fields. Showed and should be gray colors.
I want to enable and disabled Subform fields and Continuous Form fields ?
Thanks and any help will appreciated.
 I have a parent form what name is "frmEmployeeEdit". In the form have Tab Control 8 pages.
Some pages have Subform and some pages have Continuous Forms.
Exp:
One page name is "EmployeeIdentity_Page" and this page subform name is "PassportSubform"
Two page name is "Facility_Page" and this page Continuous Form name is "FacilitiesSubformEdit"
I try:
		Code:
	
	
	Forms![frmEmployeeEdit]![PassportSubform].EnableD = False
	
		Code:
	
	
	Forms![frmEmployeeEdit]![PassportSubform].Visible= False
	I want to enable and disabled Subform fields and Continuous Form fields ?
Thanks and any help will appreciated.