VB技巧问答10000例 VB技巧问答10000例

源代码在线查看: 11713.html

软件大小: 14973 K
上传用户: villyc
关键词: 10000 问答
下载地址: 免注册下载 普通下载 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:
				
				
				
				
				
							

相关资源