MsForms.TextBox refresh function
I was using RichTextBox but having problem with registry (Richtx32.ocx). I run the regsvr32 command, and it works fine until I reboot or install any Windows update.
Then, instead of using RichTextBox, I use MsForms.TextBox.The problem I'm facing right now is MsForms.TextBox doesn't have .Refresh function. This is causing problem since my TextBox wont refresh and show last line.
I do have the code to make the TextBox show last line but I need to click on the Textbox to make it show last line.
Private Sub txtStatus_Change()
'Make textbox to show last line
txtStatus.SelStart = Len(txtStatus.Text) + 1
End Sub
Any help would be very much appreciated. Thanks![]()

