File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11Imports System.IO
22Imports System.Runtime.InteropServices
3+ Imports System.Text
34Imports System.Text.RegularExpressions
45Imports Ookii.Dialogs 'Uses Ookii Dialogs for the non-archaic filebrowser dialog. http://www.ookii.org/Software/Dialogs
56
@@ -169,7 +170,8 @@ Public Class Compact
169170 Dim serverOutDelegate As New AppendOutputTextDelegate( AddressOf AppendOutputText)
170171 Me .Invoke(serverOutDelegate, text)
171172 Else
172- conOut.AppendText(text)
173+
174+ conOut.AppendText(text.Replace( "ÿ" , " " ))
173175 conOut.Select(conOut.TextLength, 1 )
174176 conOut.ScrollToCaret()
175177 End If
Original file line number Diff line number Diff line change @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
3131' by using the '*' as shown below:
3232' <Assembly: AssemblyVersion("1.0.*")>
3333
34- < Assembly : AssemblyVersion( "1.1.0 .0" )>
35- < Assembly : AssemblyFileVersion( "1.0.0 .0" )>
34+ < Assembly : AssemblyVersion( "1.1.1 .0" )>
35+ < Assembly : AssemblyFileVersion( "1.1.1 .0" )>
You can’t perform that action at this time.
0 commit comments