以电子书的形式收集了VB一些常见问题解决方法,可以很方便的查找自己需要解决的问题.对一些VB初学者很用.

源代码在线查看: 11713.html

软件大小: 14967 K
上传用户: leaveyourjam
关键词: 电子书 初学者
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				  
				    Use binary mode to open unicode files
				  
				  
				    
				      Use binary mode to open unicode files
				    
				
				
				
				Posted by 小吴 on April 07, 1999 at 10:37:05:
				In Reply to: To Xiao Wu and all: Unicode... posted by wei on April 06, 1999 at 06:58:07:
				Unicode text file has 2-byte header: 0xFF, 0xFEIf you find the header, then you must use binary mode to open the file. For example:Open "C:\unicode.txt" For Binary As #1str = InputB$(LOF(1), 1)CLOSE #1
				
				
				Follow Ups:
				
				
				
				
				
							

相关资源