delphi 编程技巧

源代码在线查看: delphi中如何取得excel的資料 (2000年11月27日).txt

软件大小: 774 K
上传用户: zyhunicom
关键词: delphi 编程技巧
下载地址: 免注册下载 普通下载 VIP

相关代码

				Delphi中如何取得Excel的資料 (2000年11月27日) 
				
				本站更新  分类:   作者:srw  推荐:   阅读次数:811  
				(http://www.codesky.net)  
				
				--------------------------------------------------------------------------------
				Delphi中如何取得Excel的資料
				
				DdeClientConv 位于 System 元件表
				Function TForm1.InitExcel:bool; 
				begin
				DdeClientConv1.SetLink( 'Excel', 'Sheet1' ); // 可改 'Sheet1' 为其它黃heet 名称
				if (DdeClientConv1.ddeservice='') or
				(DdeClientConv1.ddetopic='')
				then
				Result:=False
				else
				Result:=True;
				end;
				
				 
				 
							

相关资源