i have a binary file ,i dont know how to open it in my application, i need coding for it.
can someone tell???
http://www.badongo.com/file/2807504
click to download the file

Hello!

Try this code. I use this code to open text file then put the filename in the textbox

<pre>
With OpenFileDialog1

.Filter = "Text files (*.txt)|*.txt|" & "All files|*.*"
'setting filters so that Text files and All Files choice appears in
'the Files of Type box in the dialog
If .ShowDialog() = DialogResult.OK Then
'showDialog method makes the dialog box visible at run time
Textbox1.Text = .FileName
End If
End With
</pre>

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.