Posts toplist
Rating posts
-
- Post
- Been upvoted
- Author
- Rating
-
-
Thu Jun 11, 2020 11:36 am Re: Automated Package Build Thu Jun 11, 2020 11:36 am Re: Automated Package Build
It is the plan to add the ability to export psf files and projects from the command line in one of the next service builds. If I get more information, I'll update you. - 2 Been upvoted
- brittneyr Author
- Rating Rating: 100%
-
-
-
Tue Nov 10, 2020 12:23 pm Re: Automated Package Build Tue Nov 10, 2020 12:23 pm Re: Automated Package Build
With the latest service release (5.7.182), there is no way to build from the command line.
As we have now received multiple requests for this, we are working on a solution to build a project or form from the command line. This should be included in the next service release of PowerShell Studio. - 2 Been upvoted
- brittneyr Author
- Rating Rating: 100%
-
-
-
Tue Nov 24, 2020 3:29 am Re: No modules pwsh 7.1 Tue Nov 24, 2020 3:29 am Re: No modules pwsh 7.1
PowerShell 7.1 is not supported yet. It uses the new .NET 5.0. Basically it means we need to rebuild, recompile and retest everything, which takes time.
It will be supported in an upcoming service release. - 2 Been upvoted
- Alexander Riedel Author
- Rating Rating: 100%
-
-
-
Thu Oct 22, 2020 7:30 am Re: Lost gui objects (Radiobuttons) Thu Oct 22, 2020 7:30 am Re: Lost gui objects (Radiobuttons)
You should be able to delete it from the document outline in the ToolBox panel: [attachment=0]SPS_DocumentOutline.png[/attachment]
You can also try selecting the element from the Properties panel and clicking delete on your keyboard or right-clicking and selecting delete. - 1 Been upvoted
- brittneyr Author
- Rating Rating: 50%
-
-
-
Mon Nov 02, 2020 12:30 pm Re: Tell me how to get rid of the information that PowerShell adds to stdErr? Mon Nov 02, 2020 12:30 pm Re: Tell me how to get rid of the information that PowerShell adds to stdErr?
This is a wishlist and feature request forum for SAPIEN products. I am not really sure what it is you are trying to accomplish and how it relates to our products. That makes it hard to recommend a different place for you. I would recommend a general powershell place and to be much more verbose about... - 1 Been upvoted
- Alexander Riedel Author
- Rating Rating: 50%
-
-
-
Wed Dec 16, 2020 12:44 pm Re: Command line compile of Windows Forms projects Wed Dec 16, 2020 12:44 pm Re: Command line compile of Windows Forms projects
With the latest service release (5.7.182), there is no way to build a form from the command line. As we have now received multiple requests for this, we have been working on a solution to build a project or form from the command line. This has been added in the next service release of PowerShell Stu... - 1 Been upvoted
- brittneyr Author
- Rating Rating: 50%
-
-
-
Fri Oct 09, 2020 11:03 pm Re: Disabled Button Color Fri Oct 09, 2020 11:03 pm Re: Disabled Button Color
Simple. Just set the backcolor property of the button or almost any other control. - 1 Been upvoted
- jvierra Author
- Rating Rating: 50%
-
-
-
Sun Nov 15, 2020 2:27 pm Re: get-process returning one user when packaged Sun Nov 15, 2020 2:27 pm Re: get-process returning one user when packaged
This should always work: [b](Get-WmiObject Win32_Process -filter "Name = 'powershell.exe'").GetOwner().User[/b] - 1 Been upvoted
- jvierra Author
- Rating Rating: 50%
-
-
-
Sun Nov 15, 2020 6:57 pm Re: get-process returning one user when packaged Sun Nov 15, 2020 6:57 pm Re: get-process returning one user when packaged
I suspect that Get-Process should also work as it is built on top of the WMI class but the security restrictions on the Net Framework classes for the CmdLets may be rest6rticting this. When some CmdLet fails then direct access via WMI may help. - 1 Been upvoted
- jvierra Author
- Rating Rating: 50%
-
-
-
Wed Dec 16, 2020 7:26 am Re: Dynamically adding a column to a CSV output file Wed Dec 16, 2020 7:26 am Re: Dynamically adding a column to a CSV output file
A CSV cannot have a variable number of columns per row. You will need to determine the number of columns in advance. This is an exercise in data relations and would normally be done with two CSV files that would be joined on the relational key. To learn what a CSV is you can start with the following... - 1 Been upvoted
- jvierra Author
- Rating Rating: 50%
-
-
-
Mon Jul 13, 2015 5:09 pm Re: DataGridView Saving and Printing Mon Jul 13, 2015 5:09 pm Re: DataGridView Saving and Printing
Same thing: [powershell]$datagridview1.Rows |
select -expand DataBoundItem |
Format-Table -Auto |
Out-String |
Out-File printfile.txt[/powershell] - 1 Been upvoted
- jvierra Author
- Rating Rating: 50%
-