自定义函数无法使用(已解决)
本帖最后由 gzh888666 于 2011-9-5 16:43 编辑#Include <ACN_HASH.au3>
$Data = "C:\优盘锁.zip"
MsgBox(0,"",_md5file($Data))
Func _md5file($File)
$Buffer = 0x20000
$File = "C:\工程1.rar"
$FileH = FileOpen($File, 16)
$MD5C = _MD5Init()
For $i = 1 To Ceiling(FileGetSize($File) / $Buffer)
_MD5Input($MD5C, FileRead($FileH, $Buffer))
Next
FileClose($FileH)
Return _MD5Result($MD5C)
EndFunc 自定义的返回值,调用自定义函数,返回值不会改变! 第7行怎么又定义了$File? 注释掉该行~ 回复 2# afan
感谢afan 版主 哈哈,楼主晕了
页:
[1]