VS 2008 - Extended ASCII Characters In Stream I / O

Jul 19, 2011

I am using StreamWriter and StreamReader in VB.NET 2008 Express to read and write ASCII text files. When I create the file and later read it, there is no problem, because I use System.Text.Encoding.UTF8 on both the write and read sides, so extended text is handled without problem. But sometimes, I have text files come in that are just straight 8 bit ASCII without the Unicode BOM... and they get a lot of junk when I try to read in anything with extended ASCII characters in it. It seems like the 8 bit extended characters are translated into multi-byte codes, and since they are filenames, of course, that doesn't work. Since the filenames just have straight 8 bit ASCII filenames. I have tried all sorts of encodings, and nothing seems to work.

The most common character that causes a problem is an "a" ... it is used in a lot of proper names. The funny thing is that sometimes is seems to workout... is there a way to read these types of text files? Some way to just tell StreamReader not to decode the text, just treat it as straight plain 8 bit ASCII text (with the old IBM PC mapping, I think). The one thing that works is to manually edit the input, replacing the extended characters with their un-accented partner and then renaming the files to match the new spelling. Maybe I should just go to read them as byte input and breaking the lines apart in my code.

View 3 Replies


ADVERTISEMENT

VS 2005 - Not Using Any Characters From Extended Ascii Character Set (128-255)

Apr 24, 2009

I want to explicitly inform my user that they are not allowed to use any characters from the extended ascii character set (128-255). When I try to create a string of these values using the following [Code] It outputs them fine, with the exception of a bunch of blanks in certain areas(I am assuming these characters are unprintable), but I noticed that when I hover over the value of sVal in the VS, the tooltip/quickview of the value is written nicely on one line. Any ideas how to remove characters that would appear to be blank spaces (unprintable) when outputting this list?

View 4 Replies

Converting Extended ASCII Characters To Hexadecimal Or Plain Text

Feb 14, 2012

I have a program written in VB.NET and I have a textbox for the RFID tag (which is in ASCII format) and then convert it to a simple text format to be saved to my database. How can I convert ASCII to plain text to save to my database?

View 1 Replies

Asp.net - Character Support - Translate Higher ASCII Characters To Lower ASCII Characters?

Aug 7, 2009

So I have an ASP.Net (vb.net) application. It has a textbox and the user is pasting text from Microsoft Word into it. So things like the long dash (charcode 150) are coming through as input. Other examples would be the smart quotes or accented characters. In my app I'm encoding them in xml and passing that to the database as an xml parameter to a sql stored procedure. It gets inserted in the database just as the user entered it.

The problem is the app that reads this data doesn't like these characters. So I need to translate them into the lower ascii (7bit I think) character set. How do I do that? How do I determine what encoding they are in so I can do something like the following. And would just requesting the ASCII equivalent translate them intelligently or do I have to write some code for that?

Also maybe it might be easier to solve this problem in the web page to begin with. When you copy the selection of characters from Word it puts several formats in the clipboard. The straight text one is the one I want. Is there a way to have the html textbox get that text when the user pastes into it? Do I have to set the encoding of the web page somehow?

[Code]...

View 4 Replies

Write Extended ASCII To UDP / IP?

May 12, 2009

I am currently writing a program with Visual Basic 2005 to talk back and forth to an external machine over UDP/IP. I recently had some trouble with it which I got help for today. I need to send the information to the machine using ASCII. I had it figured out so I could send HEX numbers 20 through 7F to the machine. The problem I had and got help for was writing the HEX numbers 0-19 to the machine. The help I recieved said that instead of writing the actual HEX number into the machine, "70" for example, I should write Chr(112). This allowed me to send numbers like HEX 01 by simply writing Chr(1).

My new problem is that I need to write the HEX numbers 90, 91, 96, and 97 to the machine. Every time I try and send these numbers my computer sends out a weird number. For example, I try to send HEX 90 as Chr(144) and it ends up coming up as HEX 3F on the opposite end. After looking up the ASCII table online I found that Chr(144) is an Extended ASCII code.

View 5 Replies

Reading Decimal Value Of An Extended Ascii Character?

Sep 1, 2011

I'm Alan and I'm writing a little program (beginner), but I'm stuck and I can't get any further. So I hope one of you guys can help me solve following problem.Let me explain what I'm making, so it can give you all a better perspective.

For a this project I'm receiving data via the RS232 communication port. So basically I receive bytes. These bytes are converted to a string. So for example I receive this:"BAA" this is good because I can get the correct decimal value for "B"(66) and "A"(65) using the command asc("A") in .NET.but sometimes I receive a character that exceeds the 0-127 limit for example ""(128) (please see [URL]..But now when I try to get the decimal value of "" I get 63 instead of 128. I searched the Internet and forums for an answer but I didn't find one that fits my problem.

So if it's possible, can one of you code experts explain me how to fix this problem ? It would help me a lot. I hope I described my problem clearly, but if there are some questions,

View 1 Replies

Converting An ASCII 6-bit String To 8-Bit ASCII Characters?

May 9, 2011

I'm working on decoding a NMEA sentence that is a compressed 8-bit string. I'm having a very hard time of wrapping my head around the bit manipulation needed to convert this string. If someone could get me started with this it would be great.

Here is the incomming string:

!AIVDM,1,1,,A,14eG;o@034o8sd<L9i:a;WF>062D,0*7D

and here is the expected output:

[code]...

View 10 Replies

Constants For ASCII Control Characters?

Feb 26, 2012

I have an app that I have been recoding in vb.net formerly written in VB6. In this app I use some ASCII control codes such as ACK NAK ENQ US RS EOT. The VB6 app uses the CHR() function with the proper ASCII codes to handle these but in recoding I would like to use something more meaningful and descriptive than CHR(4) for example.

[Code]...

View 5 Replies

Convert Characters To 7BIT ASCII With .NET?

Jul 26, 2009

is there a way to convert characters to 7BIT ASCII with .NET?

View 3 Replies

Converting Characters To ASCII Code?

Mar 9, 2009

reading special characters within my VB code. ASCII code Char(34) = " works fine but Char(60) = < and Char(62) = > are not being read.

My Code

node.FirstChild.InnerText = Chr(60) & "httpRuntime executionTimeout=" & Chr(34) & "999999" & Chr(34) & " maxRequestLength=" & Chr(34) & "2097151" & Chr(34) & "/" & Chr(62)

[Code].....

View 3 Replies

Define A String Literal Containing Non-ASCII Characters?

May 19, 2010

I'm programming in VB.NET using Visual Studio 2008. I need to define a string literal containing the character "÷" equivalent to Chr(247). I understand that internally VS uses UTF-16 encoding, but when the source file is written to disk it contains the single byte value F7 for this character.

This source file is processed by another program that uses UTF-8 encoding by default, so it fails to interpret this character correctly, attempting to combine it with the following single-byte character. What encoding would correctly interpret the single byte F7 as the single character ÷?

Alternatively, is there a way of expressing a non-ASCII literal that uses only ASCII characters - like using some kind of escape sequence?

View 1 Replies

Get The Length (i.e. Number Of Characters) Of An ASCII String In .NET?

Jun 17, 2009

I'm using this code to return some string from a tcpclient but when the string comes back it has a leading " character in it. I'm trying to remove it but the Len() function is reading the number of bytes instead of the string itself. How can I alter this to give me the length of the string as I would normally use it and not of the array underlying the string itself?

Dim bytes(tcpClient.ReceiveBufferSize) As Byte
networkStream.Read(bytes, 0, CInt(tcpClient.ReceiveBufferSize))
' Output the data received from the host to the console.'

[code]....

Len() reports the number of bytes not the number of characters in the string.

View 5 Replies

IO.File.ReadAllLines ANSI Characters (ASCII > 127)?

Feb 14, 2012

I'm using IO.File.ReadAllLines(FileName) to read all lines from text file to array of strings at once. Problem is, text lines include ANSI characters above ASCII value 127 (Scandinavian letters e.g. " (Ascii 196), (Ascii 246) and (Ascii 233). Array is build up nicely, but all chars above ascii value 127 are not shown right. How can I use ANSI character set with .ReadAllLines to correct this problem? In VB6 with "Open Filename For Input As #1 / Line Input #1, txtLine" there wasn't any problem. OBS: This is already solved, found the answer by myself:

Dim myEncoding As Encoding = System.Text.Encoding.GetEncoding(1252) ' Windows-1252
Dim strLibrary As String() = IO.File.ReadAllLines(FileName, myEncoding)
Problem was to find right character set, which was Windows-1251 (ISO-8859-1)

[code].....

View 1 Replies

Convert Characters To ASCII Values Using Visual Basic?

Sep 25, 2009

I'm an undergraduate student from Singapore University, would like to enquire you on how to convert character codes to ASCII codes using visual basic. regarding the codes on how to build it as I need it for my semestral project

View 3 Replies

Displaying Data In One Text Box All In ASCII Code/characters?

Oct 12, 2009

I have made an application in VB 6.0.In this application ,i am connecting one controller through serial port to laptop.I have used MSOMM control for this purpose.Controller is sending data as a string .On VB 6.0 applicaton in laptop ,i am getting data displayed in one text boxall in ASCII code/characters.Total chatacters in string are 61.My problem is this that all 61 characters are comming in one text box.I want thateach character should come in seperate text box so that i can be able to display them individually,i.e. 61 characters and 61 text boxes.

View 2 Replies

VS 2005 Ascii Unprintable Characters In Windows Vista?

Jul 15, 2010

i have a problem a in vb.net in Windows Vista Basic environment, while using the chr(0) it gives an empty string, while in windows XP chr(0) gives the following character  am wonderign why in windows vista it can't result to the same thing actually it amounts to NOTHING as the result.

View 5 Replies

Convert String Containing Upper ASCII Characters To Byte Array?

Oct 9, 2008

How to correctly convert string containing upper ASCII characters to byte array besides looping through each character and filling the array using AscW(chr)?I know I can do something like:

Code:
Dim bSourceData As Byte() = System.Text.ASCIIEncoding.GetBytes(sourcedata)

But this only works for lower ascii characters (0-127).Instead of ASCIIEncoding I can specify encoding myself (System.Text.Encoding.Getencoding(encoding).GetBytes(sourcedata)). But I have to specify correct encoding in this case, otherwise most of special characters are converted to "?". What should I do if I don't know the encoding?

View 1 Replies

Getting Certain Characters From A Stream Of Characters?

Nov 23, 2011

When I swipe a card into Word Pad, I can see the information on the card. his information is a 39 character string of letters, numbers and other characters.I would like to be able to 4 consecutive characters of the 39 as a userid.Sample string of characters:;12345678GAM123456789GAM123456789GAM12?

View 6 Replies

C# - Convert An Image In To A Stream Of Characters?

Sep 17, 2010

I have found that an image can be stored as some string. To give an example I have included a ms word part that has an image.I saved a word file with image and saved it as xml format .when i opened the xml file in a notepad i got following section. It must be the image being stored as some stream of text. Is there a similar way to do it in .net.

[Code]....

View 4 Replies

Strange Characters When Using Stream Writer

Aug 22, 2009

I am having a strange issue when using the StreamWriter where I am getting some strange charachers in my text file when reading data from a query string.

[Code]...

View 3 Replies

Write An Application For Receiving Data (ascii Characters) From Microcontroller Through The Serial Port In Three Separate Parts

Jul 18, 2009

I need to write an application for receiving data (ascii characters) from microcontroller through the serial port in three separate parts. I've created three RichTextBoxes, but I do not know which commands I need to type. In first textbox I need to receive one byte... next six bytes need to be placed in second text box, and finally last seven bytes need to be placed in third textbox.

View 11 Replies

Stream Reader / Writer - Illegal Characters In Path

Apr 28, 2011

I'm trying to setup a simple app that reads a file and then writes the contents to another file using OpenFileDialog and SaveFileDialog. Looking at the debbugger it looks like it's reading fine, I can see the data I want written. Towards the end of my code I get the following error message:"Illegal characters in path". I've researched this error. I'm not using any illegal characters such as /\? etc and the pathname contains all alpha characters. I'm pulling the test file from the C drive and trying to save it there as well.

Path: C:\Test.csv
My code:
Private Sub btnAppendData_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAppendData.Click
Dim Result As DialogResult
Dim FileContents As String
[Code] .....

View 9 Replies

Extended Webbrowser Control In Vb 2008 Express Edition

Dec 9, 2010

I am on my way to create my own tabbed advanced webbrowser in vb 2008.I have collected most of the tools for that,but i have the following problem:

The webbrowser control in vb 2008 is an instanse of IE.But i want to build my 'own' webbrowser, with custom contextmenustrip, navigate error messages ,etc

View 1 Replies

.net - Microsoft.VisualBasic.FileIO.TextFieldParser Changes ± Ascii 241 To ? Ascii 63?

Dec 11, 2010

I am using Microsoft.VisualBasic.Fileio.TextFieldParser to parse a CSV file that was created with Excel 2003. The parser is working great with the exception that it is converting extended ascii values to question marks! So if the file content was:

± 3
The TextFieldParser is returning
? 3

I have tried all of the encodings in the System.Text.Encoding package with no luck. I thought I had it with UTF7 but it was dropping other characters like replacing the + sign with a space.

View 2 Replies

Scan A Text File To Determine If It Is A Text File And If It Contains Any Non-ASCII Characters?

Jan 27, 2012

what would be the optimum code in VB2010 that check a file to determine:

1) is it a text file, and

2) if it is a text file, does it contain any non-ASCII characters

Note that LF, CR, and EOF would be expected, and should not be flagged. I can think of 3 - 4 ways to do it, but there may be a 'best' way in terms of simplicity and speed.

View 7 Replies

What Is The 'whitespace' ASCII Or Unicode Character In System.Text.Encoding.ASCII.GetBytes (whitespace)

Nov 4, 2009

I would like to pass a whitespace character by using the System.Text.Encoding.ASCII.GetBytes(" "), and System.Text.Encoding.Unicode.GetBytes(" ") , where " " is the whitespace Character required. What do I need to type (" ") to get a whitespace character passed.?

View 6 Replies

Stream Read Return Length 0 While Stream Is Open And Has Valid Data In It?

May 25, 2012

in an winForm app in VS2010 win 7 compiling to x86, I try to do what Alvas.Audio seems to work. See (c# ex: [URL] for reference.

Dim data() As Byte = wr.ReadData(second * i, second)

The result give me data.length()=0. I do not have any exception, I can read format from it and whatever reader I use I got this problem.EDIT : After some tests, it seems like the uncompressed file I create in the first step (in PCM format, with .wav extension) can not be recognized by the Alvas.audio library for the second step. I must miss something around Audio file markups or something alike.

Here is the code that might be the source (basically this is step 1):

Dim functOut As String = String.Empty
Dim wr As Alvas.Audio.IAudioReader = Nothing
Dim fs As IO.FileStream = Nothing

[code]....

How can I write the resulted stream to be sure I can read it again later?

View 1 Replies

VS 2010 Make Shoutcast Stream Info Like The Stream Name

May 5, 2011

Im making a desktop player for a online web radio, and for the program I wanna make it show all the stream info. Like the stream name, and such. However I dont know how to do this? I looked everywhere

The server url is setup like this "[URL]" And it has all the stream info and that there. So is there a way I can get the info from there onto like say a label? Live updates btw.

View 1 Replies

Convert An ASCII String To Hex For VB 2008?

Jun 13, 2010

I'm trying to convert an ASCII String to hex for VB 2008. So far I have this :

Code:
Function asc2hex(ByVal StrName As String) As String
Dim loopCount As Integer, strHold As String
For loopCount = 1 To Len(StrName)
strHold = strHold & Hex(Asc(Mid(StrName, loopCount, 1)))
Next loopCount
asc2hex = MsgBox(strHold)
End Function

However, It is not reporting all the bytes that it should be. For example: This is the correct format.

[Code]...

View 3 Replies

VS 2008 - ASCII To HEX Buffer Converting

Sep 16, 2009

I found this function from the net. But I have a problem with the reply buffer. The reply buffer is in ASCII value...but I need is HEX value. Is there any way that the reply buffer is in hex?

[Code]...

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved