Standard message box popups using Wscript.Shell look boring, ugly, a bit 1990s and aren’t very flexible. So we’ve created our own PowerShell GUI message box popup. **UPDATED** – Now supports multiline messages that are too long for the default text … Continue reading →
This post provides an example of creating a pretty PowerShell combobox using a custom DrawMode. Instead of using the default fonts and colours, we can override this setting to conditionally highlight combobox entries in different colours, and even use an … Continue reading →
This post provides an example of how we can override the default behaviour to show custom tooltips in PowerShell Forms using OwnerDraw. Add-Type -AssemblyName System.Drawing #define brushes for black and white $whiteBrush = new-object Drawing.SolidBrush White $blackBrush = new-object Drawing.SolidBrush … Continue reading →