How to display the text file while clicking the button - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T17:49:19Z http://stackoverflow.com/feeds/question/1199143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1199143/how-to-display-the-text-file-while-clicking-the-button -1 How to display the text file while clicking the button Gopal http://stackoverflow.com/users/128071 2009-07-29T09:57:05Z 2009-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#1199226 1 Answer by Chris W for How to display the text file while clicking the button Chris W http://stackoverflow.com/users/121879 2009-07-29T10:17:25Z 2009-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#1199424 2 Answer by Binary Worrier for How to display the text file while clicking the button Binary Worrier http://stackoverflow.com/users/18797 2009-07-29T10:57:24Z 2009-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#1199576 4 Answer by Stefan for How to display the text file while clicking the button Stefan http://stackoverflow.com/users/19307 2009-07-29T11:30:44Z 2009-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#1199860 2 Answer by MarkJ for How to display the text file while clicking the button MarkJ http://stackoverflow.com/users/15639 2009-07-29T12:20:36Z 2009-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&amp;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>