top of page

Access Private Controls/Variables from Child From to Parent From

Writer's picture: Rumesh Aponso (RMAX)Rumesh Aponso (RMAX)

We could encapsulate the control variables / define and use the Get Set methods.


#region Methods
public SalNumber GetExecutionTmplSq()
{
	#region Actions
	return this.dfnExecutionTmplSq.Number;
	#endregion
}

public void SetTcActivity(SalNumber nTcActivity)
{
	#region Actions
	if (nTcActivity == 1)
	{
		dfnCExecutionTime.Enabled = true;
	}
	else
	{
		dfnCExecutionTime.Enabled = false;
	}
	#endregion
}
#endregion

0 views0 comments

Related Posts

See All

Fnd Dynamic Tab Page in IEE Client

[FndWindowRegistration("YVVDA_COMPANY_ADDR", "YvvdaCompanyAddr", FndWindowRegistrationFlags.HomePage)] [FndDynamicTabPage("frmCompanyAddr...

LISTAGG in PLSQL

Example 1: SELECT DISTINCT LISTAGG(t.commission_receiver, ';') WITHIN GROUP (ORDER BY t.commission_receiver) FROM...

Get Foundation Error from ORA Error

FUNCTION Strip_Ora_Error ( sqlerrm_        IN VARCHAR2,    sqlcode_        IN NUMBER DEFAULT NULL,    strip_ora_only_ IN BOOLEAN DEFAULT...

Comments


Copyright © 2025 RMAXOneNote

  • Online CV
  • LinkedIn
  • Youtube
  • GitHub
  • Blogger
bottom of page