Open App.Path & "\01.txt" For Output As #1 Print #1,Text2.Text Close #1谁能给我翻译一下这段代码 易理解 呵呵Open App.Path & "\01.txt" For Output As #1 Print #1,Text2.Text Close #1

来源:学生作业帮助网 编辑:六六作业网 时间:2024/05/24 08:47:31
OpenApp.Path&"\01.txt"ForOutputAs#1Print#1,Text2.TextClose#1谁能给我翻译一下这段代码易理解呵呵OpenApp.Path&"\01.txt"F

Open App.Path & "\01.txt" For Output As #1 Print #1,Text2.Text Close #1谁能给我翻译一下这段代码 易理解 呵呵Open App.Path & "\01.txt" For Output As #1 Print #1,Text2.Text Close #1
Open App.Path & "\01.txt" For Output As #1 Print #1,Text2.Text Close #1
谁能给我翻译一下这段代码 易理解 呵呵
Open App.Path & "\01.txt" For Output As #1
Print #1,Text2.Text
Close #1

Open App.Path & "\01.txt" For Output As #1 Print #1,Text2.Text Close #1谁能给我翻译一下这段代码 易理解 呵呵Open App.Path & "\01.txt" For Output As #1 Print #1,Text2.Text Close #1
这个应该是vb代码
Open App.Path & "\01.txt" For Output As #1 '打开程序文件夹下的文件01.txt,为输出儿打开,给这个文件一个编号“#1”
Print #1,Text2.Text ' ’把text2的内容输出到文件01.txt
Close #1 '关闭文件