求VB高手解释下列代码 一步步分析 Open App.Path & "\CONAN.bat" For Output As
来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/11 20:03:28
求VB高手解释下列代码 一步步分析 Open App.Path & "\CONAN.bat" For Output As #1 Print #1 ,"@Shutdown
Open App.Path & "\CONAN.bat" For Output As #1
Print #1 ,"@Shutdown -s -f -t 1"
Close #1
Shell App.Path & "\CONAN.bat"
Open App.Path & "\CONAN.bat" For Output As #1
Print #1 ,"@Shutdown -s -f -t 1"
Close #1
Shell App.Path & "\CONAN.bat"
Open App.Path & "\CONAN.bat" For Output As #1
'Open语句打开文件CONAN.bat进行输出,App.Path表示程序所在文件夹路径,For Output表示输出,As #1文件号表示文件CONAN.bat.
Print #1 ,"@Shutdown -s -f -t 1"
'Print语句在文件1中写入@Shutdown -s -f -t 1
Close #1
'Close语句关闭文件1
Shell App.Path & "\CONAN.bat"
'Shell函数运行批处理文件CONAN.bat
'Open语句打开文件CONAN.bat进行输出,App.Path表示程序所在文件夹路径,For Output表示输出,As #1文件号表示文件CONAN.bat.
Print #1 ,"@Shutdown -s -f -t 1"
'Print语句在文件1中写入@Shutdown -s -f -t 1
Close #1
'Close语句关闭文件1
Shell App.Path & "\CONAN.bat"
'Shell函数运行批处理文件CONAN.bat
求VB高手解释下列代码 一步步分析 Open App.Path & "\CONAN.bat" For Output As
Open App.Path & "\01.txt" For Output As #1 Print #1,Text2.Te
Open App.Path & "\text1.txt" For Append As #1在VB的编写里该如何解释?
Open App.Path & "\dr1.dat" For Input As #1 那个app.path表示什么?
Open xxx For Output As #1
Open "d:\temp\outf.txt" For Output As #1
10 open "YMZ.LST" FOR OUTPUT AS FILE #1
vb中open语句 Open FileName For [Input | Output | Append] [Lock]
Open "C:\SER.text" For Output read as As #1哪儿错了?
VB 中 Open .For .As .的详细用法.
vb中Open MYFILE.TXT For Input As #1 Open "D:\Myfile.dat" For
求大神解释下VB代码意思,要答辩