吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 5722|回复: 8
收起左侧

[其他转载] [分享] 教你在DELPHI中如何调用系统对话框

 关闭 [复制链接]
dujie110 发表于 2009-9-21 15:06
在写程序的时候,有时我们为了省力,或者为了别的目的,我们常常想借用系统的对话框,那么,如何才能调用系统对话框呢?一位朋友是VB中是这样调用“打开方式”对话框的:

  winexec(PChar(’rundll32 shell32,OpenAs_RunDLL ’+FilePath),SW_SHOWDEFAULT);

  这句代码是运行rundll32.EⅩE,让它调用shell32.dll中的资源来实现的。方法可行,但是有许多像我一样的菜鸟并不明白如何调用shell32.dll中的宝贵资源,我们应该如何去做呢?

  下面说说我是如何调用的:

  一、调用系统“About”对话框:

  首先在uses中加入SHellApi,
  然后写下如下代码:

  procedure TForm1.Button1Click(Sender: TObject);
  var
  shellapp: variant;
  begin
  ShellAboutW(0,’Timer v1.03’,’kedy版权所有’,1);
  end;
  其他步骤我不详述。运行后点击button就会弹出标准的WINDOWS关于对话框。对话框标题为"关于Timer v 1.03"。大家可 以看到,在程序中我使用了ShellAboutW这个函数。在MSDN2003中这个函数  是这样描述的:
  ShellAbout Function
  Displays a ShellAbout dialog box.  
  Syntax
  int ShellAbout( HWND hWnd,
  LPCTSTR szApp,
  LPCTSTR szOtherStuff,
  HICON hIcon
  );
  Parameters
  hWnd
  [in] Window handle to a parent window. This parameter can be NULL.  
  szApp
  [in] Pointer to a null-terminated string containing text that will be displayed in the  
  title bar of the ShellAbout dialog box and on the first line of the dialog box after the  
  text "Microsoft". If the text contains a separator (#) dividing it into two parts, the  
  function displays the first part in the title bar and the second part on the first line  
  after the text "Microsoft".  
  szOtherStuff
  [in] Pointer to a null-terminated string containing text that will be displayed in the  
  dialog box after the version and copyright information.  
  hIcon
  [in] Icon that the function displays in the dialog box. If this parameter is NULL, the  
  function displays the Microsoft® Windows® or Microsoft Windows NT® icon.  

  什么意思我想不用我来翻译了吧,这些东西自己去看最好。

  二、调用关机对话框

  我们只要把begin部分代码改为
  begin
  shellapp := CreateOleObject(’Shell.Application’);
  shellapp.ShutDownWindows;
  end;

  其他部分不变。运行点击button我们就可以看到标准的系统关机对话框了。
  其实这还是调用的WindowsAPI函数shutdownwindows.
  这个部分使用的是windows的shell application的method中的两个函数。method其他的函数还有:
  BrowseForFolder、CascadeWindows、ControlPanelItem、EjectPC、Explore、FileRun、FindComputer、  FindFiles、Help、 MinimizeAll、NameSpace、Open、RefreshMenu、SetTime、TileHorizontally、    TileVertically、TrayProperties、 UndoMinimizeALL。我也只是学会了使用其中的几个函数。详细情况    请大家查看MSDN中有关shell object的内容。

  我最想说的是,学windows下的程序一定要用MSDN。这个库里的资源让我实在惊叹不已,大家可以看一看,我想你也会这样认为的。

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

Squn 发表于 2010-2-4 22:27
本帖最后由 Squn 于 2010-2-4 22:28 编辑

Delphi调用系统对话框unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls,ShellApi,ComObj;

type
  TForm1 = class(TForm)
    btn1: TButton;
    btn2: TButton;
    procedure btn2Click(Sender: TObject);
    procedure btn1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.btn1Click(Sender: TObject);
var
  shellapp : Variant;
{begin
  ShellAboutW(0,'Timer v0.1','Only For Fun',1);
end;  }

begin
  shellapp := CreateOleObject('Shell.Application');
  shellapp.ShutDownWindows;
end;

procedure TForm1.btn2Click(Sender: TObject);
begin
  Close;
end;

end.
hixiaosheng 发表于 2010-2-4 22:57
不错,学习了,Squn 姐姐用了cnpack包吧,嘿嘿··
Squn 发表于 2010-2-5 10:57
回复 3# 当红小生


    我代码着色用的是另外一个工具... 我上网本上有..公司电脑没有.. 忘记叫啥了..
elqs 发表于 2010-10-7 15:22
就是學習SDK嘛,呵呵WIN32編程是必學的
夜的歌 发表于 2011-1-8 09:55
学习,调用API函数
limin 发表于 2011-1-9 20:10
这个教程不错。
潜水高手 发表于 2011-2-13 16:48
不错来围观下..
deja_vu 发表于 2011-2-14 10:33
支持下 不错 学习了 呵呵
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-16 22:21

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表