| Recent Answers |
 |
 |
2009-01-06 Visual Basic - attempt to make EXE, I get a out of memory error: Your computer likely doesn't have enough memory. You probably only have 1 GB? Try closing everything (including some of your services) and recompiling. Just as important, none of your modules or forms...
|
2009-01-02 Visual Basic - VB Report: you need to make the command in the dataenvironment with a ? the value of which is obtained in a textbox ( user's choice) this is known as parameter query. as i am away in a different town i cannot...
|
2008-12-31 Visual Basic - .txt file listing drive letters: Yes, you need to enumerate the Drives collection and then just use standard File I/O to write your text file. It can be done. I teach writing text files in my VB tutorials. I don't have any sample code...
|
2008-12-28 Qbasic, Quickbasic - reading lines: Ok... this is betting that the file HAS the data on line #1 OPEN FileName$ FOR INPUT AS #FileNbr% IF NOT EOF(FileNbr%) THEN GET$ #FileNbr%, Txt$ ' assume "1435673244 ->1234<- 3235667893" RevNbr$...
|
2008-12-27 Qbasic, Quickbasic - reading lines: Hi Robert, A "text file" is just a SEQuential file and can be read quite easily opening it like this: OPEN FileName$ FOR INPUT AS #FileNbr% WHILE NOT EOF(FileNbr%) GET$ #FileNbr%, Txt$ WEND...
|