Page 1 of 1

retrieving control information from form

Posted: Wed Oct 21, 2015 2:47 pm
by boyddt_co
I have a very simple test form that I'm working with and I'm trying to pull the type of controls that are on the form. This is just me playing around with no specific results that I'm get.

I have a function that cycles through the controls pulls the type and then to IF statements. The only way I can get the function to work is to call if from the $frm_test_load function. If I try to call it from another point in the script its as though the form doesn't exist.

The code below doesn't work.
Any ideas
PowerShell Code
Double-click the code block to select all.
$frm_test_Load={
	#TODO: Initialize Form Controls here
	$Label2.Text = $frm_test.Controls.Count

}

function ClearAll()
{
	foreach($control in $frm_test.controls)
	{
		Write-Host $control.gettype().name
		if ($control.gettype().name -eq 'richtextbox')
		{
			$control.enabled = $false
		}
		elseif($control.gettype().name -eq 'button')
		{
			$control.visible = $false
			$frm_test.Controls['statusbar1'].Text = "working..."
		}
		$textstring = $textstring + $control.gettype().name + "`n"
	}
	$Label2.Text = $textstring
}
	ClearAll

retrieving control information from form

Posted: Wed Oct 21, 2015 2:47 pm
by SAPIEN Support Forums
This is an automated post. A real person will respond soon.

Thank you for posting, boyddt_co.

Here are some hints to help you get an accurate and complete answer to your question.

Ask in the best forum: If you asked in the wrong forum, just copy your question to the right forum.

Anticipate follow-up questions!

Did you remember to include the following?
  • 1. Product, version and build
    2. 32 or 64 bit product
    3. Operating system, e.g. Windows 7 64 bit.
    4. Attach a screenshot, if applicable
    5. Attach logs, crash reports, etc., in a ZIP file
If not, please take a moment to edit your original post or reply to this one.

*** Make sure you do not post any licensing information ***

Re: retrieving control information from form

Posted: Wed Oct 21, 2015 3:11 pm
by jvierra
You can normally execute code only in an event in a form. Once the form is displayed only event code is active. This is by design.

Re: retrieving control information from form

Posted: Wed Oct 21, 2015 5:44 pm
by boyddt_co
Makes sense...

Thanx