MS Rename taskFlow

This commit is contained in:
2023-03-27 11:10:49 +02:00
parent 4ebb40fd9e
commit 930f4c8af8
361 changed files with 193 additions and 34 deletions

View File

@@ -0,0 +1,9 @@
Public Class frmPreviewHtml
Public DisplayText As String
Private Sub frmPreviewHtml_Load(sender As Object, e As EventArgs) Handles Me.Load
WebBrowser1.Refresh()
Dim otext = "<html><head></head><body>" + DisplayText + "</body></html>"
WebBrowser1.DocumentText = otext
End Sub
End Class