[lbpp-devel] Problems with LOF and INPUT$
Status: Inactive
Brought to you by:
aliguori
|
From: Michael R. <wal...@fr...> - 2001-12-18 04:14:05
|
When I print LOF it shows the byte size as 0. Open "fialdialog.bas" for input as #test Print LOF(#test) Close #test End --------------------------------------------- I don't believe INPUT$ is working either Open "fialdialog.bas" for input as #test For x = 1 to 10 Print INPUT$(#test, 1); Next x Close #test End It should print out the first 10 characters, but it prints nothing. If I remove the ";" it will print 10 blank lines. |