码迷,mamicode.com
首页 > 其他好文 > 详细

【温故Delphi】双击工程文件打开软件

时间:2014-07-19 22:26:51      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   文件   io   

问题描述

  大部分软件都有鼠标双击文件,就能打开所关联的软件并打开所选工程,这是如何做到的呢?

  把文件关联到一个程序中,双击文件来启动程序,那么这个文件名称就是这个程序的命令行的一个参数

  所以要想实现双击工程文件打开软件,在程序运行入口必须要处理命令行。

代码说明  

 1 begin
 2   Application.Initialize;
 3   CreateMainForm();
 4   //GetCommandLine为Win32 API,用于获取命令行内容
 5   HandleCommandLine(GetCommandLine);
 6   if System.ParamCount = 0 then
 7     ExecuteApplication();
 8   Application.Run;
 9 end.
10 
11 procedure HandleCommandLine(const ACommandLine: string);
12 begin
13   // 解析参数个数:没有参数,直接退出
14   if ParamCount(ACommandLine) = 0 then Exit;
15 
16   S := ParamStr(ACommandLine, 1);18   if IsOpenFileMode(S) then
19   begin
20     // 判断当前是否能够打开新工程
21     if not AppInModelState then
22       OpenProjFile(GetLongFileName(S))
23     else
24       ShowPrompt(请关闭当前窗体,再重新双击打开工程);
25   end;
26 end;

【温故Delphi】双击工程文件打开软件,布布扣,bubuko.com

【温故Delphi】双击工程文件打开软件

标签:style   blog   color   strong   文件   io   

原文地址:http://www.cnblogs.com/liustdelphi/p/3855209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!