Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
input/ output in VB6
Name: olumide Date: February 25, 2005 at 05:53:21 Pacific OS: XP CPU/Ram: 256
Comment:
I would Like to read text file from any location from my hard drive. I am using the windows common Dialogue control to navigate around. But How would I read the Full path of the file so that my program can process it? Any Idea will be appreciated.
Summary: Carven: To read from a file in VB6, try this: Private Sub Reading_Click() Dim variable1 As String Open "c:\My Documents\sample.txt" For Input As #1 Input #1, variable1 Text1.Text = variabl...
Summary: Or better still, get rid of the Input Box altogether. Its of no use to man nor beast except in a quick and dirty routine for testing. For any user input create you own user input dialogue using text ...
Summary: I want to write a program that repeatedly reads lines of data from a data file lakes.dat (using a loop). It sorts the data according to the condition below into two output data files (ifs). The progra...