读取和写入顺序文件示例 用于写入文件的代码 未定标题记事本 件(E编辑)格式Q帮助H 包含新数据 的文件 Open "C: \NewFile. txt"For Output As #1 Newtext New valuet For i =1 To 10 Print #1,NewText Nex七i IForm1-[输入窗体 示(D)退出(E IEx close #1 Open wC: \NewFile. txt"For Input As #1 While Not EOF(1 Line工nput#1,temp Wend FileText. Text =temp 览数据添加数据清除数据 Close #1 13 Y北大青鸟用于写入文件的代码 Open "C:\NewFile.txt" For Output As #1 NewText = "New Value" For i = 1 To 10 Print #1, NewText Next i Close #1 Open “C:\NewFile.txt” For Input As #1 While Not EOF(1) Line Input #1, temp Wend FileText.Text = temp Close #1 包含新数据 的文件