Advertisement
Advertisement
| 07.30.2008 at 06:30AM PDT, ID: 23607212 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: |
Protected Sub textbuffertest_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles textbuffertest.Click
Dim input As New FileStream("c:\promotion.txt", FileMode.Open, FileAccess.Read)
Dim output As New FileStream("c:\Myoutputfile.txt", FileMode.Create, FileAccess.Write)
Dim MyTest As String = String.Empty
Dim count As Integer = 1024
Dim buffer(count - 1) As Byte
count = input.Read(buffer, 0, count)
Do Until count = 0
' modify each byte in buffer here
MyTest += ByteArrayToString(buffer)
output.Write(buffer, 0, count)
count = input.Read(buffer, 0, count)
Loop
input.Close()
output.Close()
Outputtext.Text = MyTest
End Sub
Public Function ByteArrayToString(ByVal bytArray() As Byte) As String
Dim sAns As String
Dim iPos As String
sAns = System.Text.Encoding.GetEncoding(1252).GetString(bytArray)
'System.Text.Encoding.Unicode.GetString(bytArray)
iPos = InStr(sAns, Chr(0))
If iPos > 0 Then sAns = Left(sAns, iPos - 1)
ByteArrayToString = sAns
End Function
|