con questo codice leggo una riga alla volta da un file .xtx
come poss leggere ad esempio 5 righe alla volta??codice:Open App.Path & "\menu\pics\11.bop" For Input As 1 Dim cnt cnt = 0 Do While Not EOF(1) Line Input #1, stringa Textmain.Text = stringa Exit Do cnt= cnt + 1 Loop Close #1
GRAZIE