PowerShell – Adding Tabs to a Form
Code.ps1 # MrNetTek # eddiejackson.net # 7/15/2022 # free for public use # free to claim as your own [void] [System.Reflection.Assembly]::LoadWithPartialName(“System.Windows.Forms”) [void] [System.Reflection.Assembly]::LoadWithPartialName(“System.Drawing”) [void] [System.Reflection.Assembly]::LoadWithPartialName(“PresentationFramework”) [void] [Reflection.Assembly]::LoadWithPartialName(“PresentationCore”) $Form = New-Object System.Windows.Forms.Form $Form.Text = “Test Form” $Form.Size = New-Object System.Drawing.Size(630,840) $Form.StartPosition = “CenterScreen” $Form.ShowInTaskbar = $True $Form.KeyPreview = $True $Form.AutoSize = $True $Form.FormBorderStyle = Read More …