文件写入:回车和Tab

时间:2013-03-27 09:43:44

标签: vb6

嗨,我是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 它只写第一行

2 个答案:

答案 0 :(得分:2)

您应该使用InputPrint语句。它们可以读写逗号分隔文件,并且可以成对使用,仅用于此类应用程序。

答案 1 :(得分:0)

这是新代码:

Open "c:\authentification.txt" For Append As #1
x = txtidentifiant.Text
y = txtmotdepasse.Text
Print #1, x
Print #1, y
Close #1