| | |
Binary Reader help needed for Beginner!
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Mar 2008
Posts: 5
Reputation:
Solved Threads: 0
Hey Guys,
I'm trying to read a Binary file located at C:\Temp\SAMPLE.DAT
values in the file have been stored in format: int32,int32, Double.
1 33 172.50
2 55 40
3 77 5000
1 99 20
4 200 0
I'm trying to read the file and display the results in a richtextbox in this format:
1, 33, 172.50
2, 55, 40
3, 77, 5000
1, 99, 20
Here's the code that i have. I'm stuck and can't think of what else to do, any help would be much appreciated! Thank you very much.
I'm trying to read a Binary file located at C:\Temp\SAMPLE.DAT
values in the file have been stored in format: int32,int32, Double.
1 33 172.50
2 55 40
3 77 5000
1 99 20
4 200 0
I'm trying to read the file and display the results in a richtextbox in this format:
1, 33, 172.50
2, 55, 40
3, 77, 5000
1, 99, 20
Here's the code that i have. I'm stuck and can't think of what else to do, any help would be much appreciated! Thank you very much.
VB.NET Syntax (Toggle Plain Text)
Dim vMessage As String Dim objBinRdr As New BinaryReader(New FileStream("C:\temp\sample.dat", FileMode.Open, FileAccess.Read)) Dim rvValues As String Dim vDelimiters() As Char = {",", "/", ";", ":"} Do While objBinRdr.PeekChar <> -1 rvValues = objBinRdr.ReadInt32.ToString(vDelimiters) vMessage = objBinRdr.ReadInt32() RichTextBox1.AppendText(vMessage) Loop objBinRdr.Close()
![]() |
Other Threads in the VB.NET Forum
- Previous Thread: Creating or opening existing tables
- Next Thread: Installation vb.net application
| Thread Tools | Search this Thread |
.net 30minutes 2005 2008 access account arithmetic array basic binary bing button buttons c# center check code combobox component connectionstring convert crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dropdownlist excel file-dialog folder ftp generatetags google gridview hardcopy image images inline insert intel internet listview login mobile monitor ms net networking output passingparameters peertopeervideostreaming picturebox picturebox1 plugin port print printing problem problemwithinstallation project reports" save searchbox searchvb.net select serial server soap sql string table tcp text textbox timer toolbox trim update updown user usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web wpf





