Search found 7 matches

by PBilat
Sat Jan 31, 2015 1:59 am
Forum: PowerShell Studio
Topic: Powershell Studio 2014 - ListView and Radio Button question
Replies: 7
Views: 3901

Re: Powershell Studio 2014 - ListView and Radio Button quest

Hi davidc, I have found the Problem with my code. Now it's running. I had to Change the code from item.Selected to item. I have changed the Radio button to a simple button as You explain me. Example: $btnSelectAllDocTypes_Click= { # Click will select all items on Word Extensions Types to scan in Li...
by PBilat
Mon Jan 26, 2015 12:37 pm
Forum: PowerShell Studio
Topic: Powershell Studio 2014 - ListView and Radio Button question
Replies: 7
Views: 3901

Re: Powershell Studio 2014 - ListView and Radio Button quest

Hello David, Thank You for your Suggestion. I have created a button "Select all" and tried the following code.. $btnSelectAll_Click={ #TODO: Place custom script here foreach ($item in $lstWordExtensions.Items) { $item.Selected = $true } } but it's not running?! And Yes, I have read and dow...
by PBilat
Mon Jan 26, 2015 11:38 am
Forum: PowerShell Studio
Topic: Powershell Studio 2014 - ListView and Radio Button question
Replies: 7
Views: 3901

Re: Powershell Studio 2014 - ListView and Radio Button quest

Hello Alexander,

Thank You for your answer. A simple push button. OK, I will give it a try.

But what about the code for this push button? Do You have an example for selecting all items over a push button=


Pascal Bilat
by PBilat
Mon Jan 26, 2015 11:27 am
Forum: PowerShell Studio
Topic: Powershell Studio 2014 - ListView and Radio Button question
Replies: 7
Views: 3901

Powershell Studio 2014 - ListView and Radio Button question

I have made in Powershell Studio 2014 a ListView with 7 items (2 items are selected by Default) Now I have a radio button (Name: Select all). How can I configure this radio button to select all items in the ListView? Variable names: Radio button: rbSelectAllExtensions ListView: lstWordExtensions Tha...
by PBilat
Mon Jan 26, 2015 11:18 am
Forum: PowerShell Studio
Topic: Powershell Studio 2014 - How to add/displaylong text (Info)
Replies: 2
Views: 1535

Powershell Studio 2014 - How to add/displaylong text (Info)

Hello,

How can I display a long text (Info with 2 or 3 pages) in Powershell Studio. Which control can I use for this?

- ex. TextBox with multilines?

OS: Windows 8.1, 64Bit
PS: Powershell Studio 2014


Pascal Bilat
by PBilat
Fri Aug 03, 2012 7:35 am
Forum: PowerShell
Topic: PS Script to PrimalForms 2011 Help needed
Replies: 1
Views: 1772

PS Script to PrimalForms 2011 Help needed

Hello everybody I use this PS Script to search Group Policy Settings. Can somebody help me to create a PrimalForms with all the PS Script content PS Script and details:<#.Synopsis Searches text files by pattern and displays the results..Description Searches text files by pattern and displays the res...
by PBilat
Fri Aug 03, 2012 5:44 am
Forum: PrimalForms
Topic: PS Script to PrimalForms 2011
Replies: 1
Views: 12903

PS Script to PrimalForms 2011

Hello everybody I use this PS Script to search Group Policy Settings. Can somebody help me to create a PrimalForms with all the PS Script content PS Script and details: <# .Synopsis Searches text files by pattern and displays the results. .Description Searches text files by pattern and displays the ...