Make some quick windows forms scirpts using Primal Forms Autoscroll text boxUpdate RichTextBox to scroll to the bottom on updates
Function Update-RichTextLog {
$richtextboxLog.Text = $Global:LogMessage
$richtextboxLog.SelectionStart = $richtextboxLog.TextLength;
$richtextboxLog.ScrollToCaret()
$richtextboxLog.Focus()
}
|