如何打开一个记事本文件?已解决
本帖最后由 My2009 于 2013-8-20 14:44 编辑如保打开一个TXT的文档?让其展现出来好读取上面的信息,即相当于用鼠标的打开功能,openfilef无法展现出来 直接用FileRead,自带帮助中有例子,如下:
Local $file = FileOpen("test.txt", 0)
; Check if file opened for reading OK
If $file = -1 Then
MsgBox(0, "Error", "Unable to open file.")
Exit
EndIf
; Read in 1 character at a time until the EOF is reached
While 1
Local $chars = FileRead($file, 1)
If @error = -1 Then ExitLoop
MsgBox(0, "Char read:", $chars)
WEnd
FileClose($file) 楼主描述的需求怎么那么像ShellExecute一定是我理解错了 二楼的功能是展开文件夹来进行相关读写操作,我现在想要的就如鼠标右击后选择择打开文件,即将文件展开 期待高手!!!! run("notepad c:\1.txt") 6楼的正解啊~~ 六楼的方便有见解,长知识了 回复 7# My2009 ShellExecute('c:\1.txt') 学习学习学习 学习了,多谢分享。 {:face (114):}
页:
[1]