Oppure

Loading
05/04/10 18:34
djcrujer
io sto cercando di fare un blocco note ed sto implementando l'opzione apri ed ho iserito questo codice
CD1.Filter = "Text Files|*.txt"
CD1.ShowOpen
NomeDelTesto = CD1.FileName
Open NomeDelTesto For Output As #1
Text1.Text = Input(LOF(1), #1)
Close #1
Form1.Caption = NomeDelTesto
Text1.SelStart = Len(Text1.Text)

però mi dice che questa stringa
Text1.Text = Input(LOF(1), #1)

è sbagliata mi potete aiutare?
aaa
05/04/10 19:30
GrG
il file lo devi aprire in Input e non in Output...

open ... For Input As ..
aaa
05/04/10 20:36
djcrujer
lol grazie che n00b di errore che ho fatto
aaa