John your code does not seem to be well obfuscated,
see,
Private Sub frmAbout_Load(ByVal sender As Object, ByVal e As EventArgs)
Dim text2 As String = String.Empty
MyBase.Scale(Common.Wparms.ScreenScalingFactor)
Me.RegisteredTo.Text = Common.Wparms.RegisteredUser
Me.RegistrationNo.Text = Common.Wparms.Registration
If (Me.RegisteredTo.Text.Length = 0) Then
Me.RegisteredTo.Text = "U N R E G I S T E R E D C O P Y"
Me.RegistrationNo.Text = ""
End If
Dim info1 As FileVersionInfo = FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly.Location)
Me.lblVersion.Text = ("Version: " & info1.FileVersion)
Me.rtfLicense.ReadOnly = True
Dim text1 As String = Path.Combine(Common.Wparms.AppPath, "License.Rtf")
Try
Me.rtfLicense.LoadFile(text1)
Catch obj1 As Object
End Try
End Sub