摘要:
memorystream
as we already saw in the diagram, this class derives from the stream base class and it is primarily used to read and write bytes of data from memory. the amount of memory buffer a......
摘要:
在 visual basic .net 中选择文件 i/o 选项
cat francis
visual studio team
microsoft corporation
2002 年 4 月
摘要:本文是针对 visual basic 程序员而写的,他们可能会搞不清 visual basic .net 中的多种文件 i/o 访问方法。可用的方法包括 visual basic......
使用vb.net加密和解密文件。(好象英文灵,中文不灵)
imports system
imports system.io
imports system.security
imports system.security.cryptography
imports system.text
module encrypt
private const ssecretkey as string = "password"
public sub main()
encryptfile("c:\temp\test.txt", _
"c:\temp\encrypted.txt", _
ssecretkey)
decryptfile("c:\temp\encrypted.txt", _
"c:\temp\decrypted.txt", _
ssecretkey)
end sub
sub encryptfile(byval sinputfilename as string, _
byval soutputfilename as string, _
&nbs...
下一页 摘要:
使用 visual basic .net 访问注册表
摘要:本文介绍如何使用 visual basic® .net 的内置函数 deletesetting、getallsettings、getsetting 和 savesetting,以及公共语言运行时的 registry 和 registrykey 类来访问注册表。其中详细说明了所需的权限、何时使用注册表编辑器,以及......