Back in mid-September, I presented a talk on “Building PowerShell GUI Tool Solutions” at the PowerShell Conference Asia in Singapore. The talk centered around GUI application design and development using PowerShell as the core language. During that talk , I…
Read More
Have you ever copied a button and found that when a user presses it, the form closes immediately afterwards? We are here to answer:
Why does this button close my form?
The reason the form closes is that the Button…
Read More
If you are working with a GUI script within PowerShell Studio and find that you need to edit the exported script to modify the control’s initialization, then you are doing something wrong.
Don’t get me wrong, modifying and initialization of…
Read More
The second leg of SAPIEN’s Building PowerShell GUI Solutions world tour is complete. This trip took us to Dallas, Raleigh and to New York City for the NY Techstavaganza. We had a great time showing PowerShell users how to create…
Read More
The Spotlight on Controls series describes the controls, that is, the objects in the System.Windows.Forms namespace, so you can use them effectively when building GUI apps in PowerShell Studio and PrimalScript.
Each post focuses on one control and lists its…
Read More
In the PowerShell Studio: Enable and Disable Groups of Controls article we discussed how you can enable or disable group of controls by setting the parent control’s Enable property.
Now we will look at other properties that have a similar…
Read More
The guys over at PowerShell Task Force have been posting a series of GUI Tutorials using PowerShell Studio 2012, including a festive Christmas GUI:
Create AD users the GUI way:
http://powershelltaskforce.com/2013/12/create-ad-users-part-6/#
Merry Christmas – How To:
http://powershelltaskforce.com/2013/12/merry-christmas-the-how-to/
I would…
Read More
Francois-Xavier Cat over at the LazyWinAdmin blog, wrote a follow up article to Creating a GUI with PowerShell Studio. Like the previous article, a video is included:
“Today I will go a bit further and show you how to…
Read More
Francois-Xavier Cat over at the LazyWinAdmin blog, wrote a great article on how to create a basic GUI using PowerShell Studio 2012. In addition, the article includes a video of the process:
“The following post will demo how to…
Read More
Two frequent questions we get on the forums are:
How do I pass a value to another form?
How do I get the results from a form?
In this article, we will answer these common questions in order to give…
Read More