How to display the text file while clicking the button - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T17:49:19Zhttp://stackoverflow.com/feeds/question/1199143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1199143/how-to-display-the-text-file-while-clicking-the-button-1How to display the text file while clicking the buttonGopalhttp://stackoverflow.com/users/1280712009-07-29T09:57:05Z2009-07-30T11:57:39Z
<p>How to display the file(*.txt) while clicking the command button</p>
<p>Using VB 6</p>
<p>Am New to VB 6</p>
<p>How to display the content of the file while clicking the button</p>
<p>Data's are stored in the text file, ex 1.txt
when am clicking the command buttion, 1.txt file will open and 1.txt data's should display </p>
<p>Need VB 6 code Help?</p>
http://stackoverflow.com/questions/1199143/how-to-display-the-text-file-while-clicking-the-button/1199226#11992261Answer by Chris W for How to display the text file while clicking the buttonChris Whttp://stackoverflow.com/users/1218792009-07-29T10:17:25Z2009-07-29T10:17:25Z<p>To just open a file using the current default file handler try using the ShellExecute API function.</p>
<p>Here's an <a href="http://www.vb-helper.com/howto%5Fshellexecute.html" rel="nofollow">example</a>.</p>
http://stackoverflow.com/questions/1199143/how-to-display-the-text-file-while-clicking-the-button/1199424#11994242Answer by Binary Worrier for How to display the text file while clicking the buttonBinary Worrierhttp://stackoverflow.com/users/187972009-07-29T10:57:24Z2009-07-29T11:14:59Z<p>No offence intended, but it sounds like you need a <a href="http://www.vbtutor.net/vbtutor.html" rel="nofollow">beginners tutorial</a> on VB6.
(I think this because you don't seem to be able to articulate exactly what you need help with, possibly because you don't know enough about what you're trying to do).</p>
<p>Googling for VB6 Tutorial will give lots of links, <a href="http://www.vbtutor.net/vbtutor.html" rel="nofollow">this one</a> looks good</p>
<p>Hope this helps, and apologies if I'm wrong :)</p>
http://stackoverflow.com/questions/1199143/how-to-display-the-text-file-while-clicking-the-button/1199576#11995764Answer by Stefan for How to display the text file while clicking the buttonStefanhttp://stackoverflow.com/users/193072009-07-29T11:30:44Z2009-07-30T11:57:39Z<p>Add a textbox to a form, make it multiline=true, add a button to the form.
And in the buttons click handler add this:</p>
<pre><code>Private Sub Button1_Click()
Dim iFile As Long
Dim strFilename As String
Dim strTheData as String
strFilename = "C:\1.txt"
iFile = FreeFile
Open strFilename For Input As #iFile
strTheData = StrConv(InputB(LOF(iFile), iFile), vbUnicode)
Close #iFile
text1.text=strThedata
End Sub
</code></pre>
<p>This will read the text in the file and add it to the textbox. </p>
<p><strong>Edit</strong>: Changed the line that reading the content to be more robust as pointed out by MarkJ in this <a href="http://stackoverflow.com/questions/1199143/how-to-display-the-text-file-while-clicking-the-button/1199860#1199860">answer</a> (Cred goes to to MarkJ to pointing out that.)</p>
http://stackoverflow.com/questions/1199143/how-to-display-the-text-file-while-clicking-the-button/1199860#11998602Answer by MarkJ for How to display the text file while clicking the buttonMarkJhttp://stackoverflow.com/users/156392009-07-29T12:20:36Z2009-07-29T12:20:36Z<p><a href="http://stackoverflow.com/questions/1199143/how-to-display-the-text-file-while-clicking-the-button/1199576#1199576">Stefan's answer</a> contains a flaw: the code to read a text file into a string isn't very robust. It's a very common mistake - the same flawed code is on some excellent VB6 web sites. His code is </p>
<pre><code>Open strFilename For Input As #iFile
strTheData = Input$(LOF(iFile), #iFile)
Close #iFile
</code></pre>
<p>Unfortunately this <a href="http://www.developersdex.com/vb/message.asp?p=640&r=6394252" rel="nofollow">throws an error</a> 62 "input past end of file" if the text file contains ASCII zero characters. Also it doesn't work in all countries (it throws an error for most strings in double byte character sets like Chinese or Japanese). </p>
<p>Perhaps those problems are a bit obscure: but there's better code to do this job <strong>in the VB6 manual</strong> (<a href="http://msdn.microsoft.com/en-us/library/aa733686%28VS.60%29.aspx" rel="nofollow">here</a>), it's also three lines, and it never fails. </p>
<pre><code>Open strFilename For Input As #iFile
strTheData = StrConv(InputB(LOF(iFile), iFile), vbUnicode)
Close #iFile
</code></pre>
<p>It looks more complicated: but actually the only difference is that the conversion from ANSI to Unicode is explicit rather than implicit. It runs just as fast, and it always works. </p>