Hey...
You know, If I have a file named "Lior.TXT" and its size is 1MB, to paste all the file into a string using the input function takes 8 seconds!!! (on my P500).
I used this code:
If LIOR.TXT size is 1MB, 8 seconds are requierd to finish the program!Code:Dim Buffer As String Open "C:\LIOR.TXT" For Binary As #1 Buffer = Input(LOF(1), #1) Close
If its 2MB, 16 seconds Are requierd! (And so on..)
Any Ideas So It Wont Take That Long?




Reply With Quote