以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [求助]网上找了一段Vbs代码,第一句在狐表里该如何定义?  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=40172)

--  作者:智友软件工作室
--  发布时间:2013/9/11 11:36:00
--  [求助]网上找了一段Vbs代码,第一句在狐表里该如何定义?
cFile = "C:\\Users\\龙哥专用\\Desktop\\IMG_3529.jpg"
Dim b() As Byte, strFile As String
ReDim b(FileLen(cFile))



--  作者:狐狸爸爸
--  发布时间:2013/9/11 11:57:00
--  

Dim cFile  As String = "C:\\Users\\龙哥专用\\Desktop\\IMG_3529.jpg"
Dim b() As Byte =  System.IO.File.ReadAllBytes(cfile)