Search found 69 matches

by angelofstealth
Fri Nov 23, 2018 5:54 am
Forum: PowerShell GUIs
Topic: Updated Client - drag and drop control issue
Replies: 4
Views: 1958

Re: Updated Client - drag and drop control issue

Deleting the temp .psf files resolved my issue. Thank you for the detailed troubleshooting notes. Much appreciated, have a great day!
by angelofstealth
Thu Nov 22, 2018 1:54 pm
Forum: PowerShell GUIs
Topic: Updated Client - drag and drop control issue
Replies: 4
Views: 1958

Re: Updated Client - drag and drop control issue

If I create a new project, i don't have the issue. Just with existing project.
by angelofstealth
Thu Nov 22, 2018 1:41 pm
Forum: PowerShell GUIs
Topic: Updated Client - drag and drop control issue
Replies: 4
Views: 1958

Updated Client - drag and drop control issue

Just updated to the latest version.. In my project now if i add a control and try to move it around it snaps back to the original position. But I am able to edit the control and set the position, just not able to drag the control to a position within the GUI. I have checked and the control is not lo...
by angelofstealth
Mon Apr 02, 2018 11:29 am
Forum: PowerShell
Topic: Software - Output Console window
Replies: 3
Views: 2507

Re: Software - Output Console window

Thank you jvierra, I'm all good now.
by angelofstealth
Mon Apr 02, 2018 11:10 am
Forum: PowerShell
Topic: Software - Output Console window
Replies: 3
Views: 2507

Re: Software - Output Console window

Newline works, color doesn't

Example:
Write-Host "`r`nHey..."-ForegroundColor Green
by angelofstealth
Mon Apr 02, 2018 10:47 am
Forum: PowerShell
Topic: Software - Output Console window
Replies: 3
Views: 2507

Software - Output Console window

In Sapien PowerShell Studio, writing a powershell script........

Using Write-Host to display a message to the Output doesn't seem to take background color or newline (`r`n). Is there something I need to enable in the options to allow this? Running in PowerShell ISE has no issues. Thanks,
by angelofstealth
Tue Jan 16, 2018 9:24 am
Forum: PowerShell GUIs
Topic: Combobox - Readonly Property Possible?
Replies: 4
Views: 2672

Re: Combobox - Readonly Property Possible?

figured it out, thanks
by angelofstealth
Tue Jan 16, 2018 8:35 am
Forum: PowerShell GUIs
Topic: Combobox - Readonly Property Possible?
Replies: 4
Views: 2672

Combobox - Readonly Property Possible?

Is it possible to locked down the combobox control to not be editable, ie only readonly like a textbox control? Only want the user to select an item from the dropdown, not allowed to delete the value selected/be null once selected. I didn't see this was an option in the control properties window, wo...
by angelofstealth
Tue Dec 19, 2017 1:46 pm
Forum: PowerShell GUIs
Topic: Multiple Forms - Globals.ps1/$script:/$global:
Replies: 6
Views: 2877

Re: Multiple Forms - Globals.ps1/$script:/$global:

I made the scope change to global.ps1 and at first didn't work for me on the child form. Decided to create a new child form and test again and it worked.
Thanks for the help again jvierra, happy holidays.
by angelofstealth
Mon Dec 18, 2017 11:04 pm
Forum: PowerShell GUIs
Topic: Multiple Forms - Globals.ps1/$script:/$global:
Replies: 6
Views: 2877

Re: Multiple Forms - Globals.ps1/$script:/$global:

I have a job-tracker run a routine and in the completedscript section i update the $Childitems with the results, to make sure it is working i show one column of the data to confirm. This is displaying the correct information. I then have a button to load the child form, to test that $Childitems stil...