您好我是VB6新手,我想實現這一點:當用戶登錄時,他輸入他的名字和密碼,我應該把它寫在一個文件中。文件寫回車和選項卡
這裏的文件「authentification.txt」:它的用戶名密碼
bill hope
jessica 1234567
jhon 7654321
以下形式的代碼:
Open "c:\authentification.txt" For Binary As #1
x = txtidentifiant.Text
y = txtmotdepasse.Text
Do While Not EOF(1)
Line Input #1, l
If l <> " " Then
Put 1, i, x & vbNewLine
Put 1, i + 1, y & vbNewLine
Else
//here i want to implement a carriage return in the file #1
End If
Loop
我的問題是:如果充滿像這樣的文件: bhope
它只寫第一行
注意,你應該考慮的問題都存儲用戶名和密碼 – 2013-03-27 11:03:49
的'做,當Not'是混淆負邏輯更安全的方法。 '直到'看起來更清晰。 – Bob77 2013-03-27 17:51:48