Powershell‎ > ‎

GUI

Make some quick windows forms scirpts using Primal Forms





Autoscroll text box

Update RichTextBox to scroll to the bottom on updates
Function Update-RichTextLog {
    $richtextboxLog.Text = $Global:LogMessage
    $richtextboxLog.SelectionStart = $richtextboxLog.TextLength;
    $richtextboxLog.ScrollToCaret()
    $richtextboxLog.Focus()
}


  

Comments