Search found 117 matches

by jsira2003@yahoo.com
Thu Jul 16, 2020 5:38 pm
Forum: PowerShell Studio
Topic: text box is wrapping and does not acknowledge new lines
Replies: 8
Views: 2118

Re: text box is wrapping and does not acknowledge new lines

I will conclude this case in the following matter. The old executable package looks fine as expected. The new executable package is affected. I wouldn't rule out your code too fast. I just decided to use the richtextbox and call it a day. I don't have much time to delve into this further. thank you,...
by jsira2003@yahoo.com
Thu Jul 16, 2020 1:01 pm
Forum: PowerShell Studio
Topic: text box is wrapping and does not acknowledge new lines
Replies: 8
Views: 2118

Re: text box is wrapping and does not acknowledge new lines

It also happens if you hit run in powershell studio as well.

John
by jsira2003@yahoo.com
Thu Jul 16, 2020 8:36 am
Forum: PowerShell Studio
Topic: text box is wrapping and does not acknowledge new lines
Replies: 8
Views: 2118

Re: text box is wrapping and does not acknowledge new lines

I am using the latest powershell studio with all updates applied.
by jsira2003@yahoo.com
Thu Jul 16, 2020 8:11 am
Forum: PowerShell Studio
Topic: text box is wrapping and does not acknowledge new lines
Replies: 8
Views: 2118

Re: text box is wrapping and does not acknowledge new lines

Operating System: Windows 10 Pro1809 OS build: 17763.973 32 or 64 bit OS: 64 bit Screen Resolutions: DISPLAY1: 1600 x 900 with scale factor 100% PowerShell Core: 6.1.0-preview.2, 7.0.1 PowerShell Core (x86): No PowerShell Core (x86) version detected .NET Core Framework: 3.1.3 .NET Core Framework (x8...
by jsira2003@yahoo.com
Thu Jul 16, 2020 6:57 am
Forum: PowerShell Studio
Topic: text box is wrapping and does not acknowledge new lines
Replies: 8
Views: 2118

text box is wrapping and does not acknowledge new lines

Before the last round of upgrades I had no issues with text in text boxes wrapping lines correctly and acknowledging line breaks. Now line breaks are no longer acknowledged and all my text runs together as illustrated below. It appears that something has changed here. My code hasn't changed. Any ass...
by jsira2003@yahoo.com
Tue Jul 09, 2019 3:03 pm
Forum: PowerShell GUIs
Topic: uncheck a check with a command and not trigger an event
Replies: 5
Views: 3051

Re: uncheck a check with a command and not trigger an event

$checkboxSelectedProgram.Enabled = $false
#change the state undetected since checkbox is disabled.
$checkboxSelectedProgram.Checked = $false
$checkboxSelectedProgram.refresh()
$checkboxSelectedProgram.Enabled = $true

This is the answer. I figured out it should be something simple like this.

John
by jsira2003@yahoo.com
Tue Jul 09, 2019 11:45 am
Forum: PowerShell GUIs
Topic: uncheck a check with a command and not trigger an event
Replies: 5
Views: 3051

Re: uncheck a check with a command and not trigger an event

When you click on a check box on a windows form that is an event. There are times when I want to change the state of the checkbox to unchecked without triggering an event. This seems straight forward. I found that by applying the command $checkboxselectedprogram.checked = $false , this triggers an u...
by jsira2003@yahoo.com
Tue Jul 09, 2019 11:02 am
Forum: PowerShell GUIs
Topic: uncheck a check with a command and not trigger an event
Replies: 5
Views: 3051

uncheck a check with a command and not trigger an event

In my application different things happen when you check or uncheck a checkbox. However when initializing the checkbox, it also triggers the event. I would like to disable the triggering of the event at a point in time when i reset the state of the checkbox. I guess I am asking how to i disable and ...
by jsira2003@yahoo.com
Wed Jun 05, 2019 6:22 am
Forum: PowerShell
Topic: powershell core 6.x
Replies: 5
Views: 4270

Re: powershell core 6.x

I appreciate your reply and illustration. Based on your last statement regarding windows forms, that sounds like I lose my ability create forms in powershell studio. I need to be able to create a mousable gui. What will replace the functionally of windows forms? Or will powershell studio going forwa...
by jsira2003@yahoo.com
Tue Jun 04, 2019 1:43 pm
Forum: PowerShell
Topic: powershell core 6.x
Replies: 5
Views: 4270

powershell core 6.x

I was interest to know about powershell studio in respect to powershell core 6.x. Does the powershell studio support this yet? If not what are the prospects for the future.

thank you,
John