请教问题如下:(200分)

  • 主题发起人 主题发起人 wulfalone
  • 开始时间 开始时间
W

wulfalone

Unregistered / Unconfirmed
GUEST, unregistred user!
1、如何隐藏程序的主窗口,是真正的隐藏,不能用ALT+F4关闭的
2、如何能让程序在任务栏中消失,
3、我写了一个系统托盘的东西,但是不知怎么能让托盘出现气泡提示,请大家指点,谢谢了
 
第一个问题呢:
你可以直接让窗口直接捕捉的.
第二个,你既然再托盘上,任务栏可以就没有.
第三个,应用BBSCOM大侠的代码
unit Unit1;

interface

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

const
TTS_BALLOON = $40;
TTM_SETTITLE = (WM_USER + 32);

type
TForm1 = class(TForm)
Button1: TButton;
Memo1: TMemo;
Button2: TButton;
Button3: TButton;
Button4: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

procedure AddToolTip(hwnd: DWORD; lpti: PToolInfo; IconType: Integer;
Text, Title: PChar);
procedure CreateToolTips(hwnd: Cardinal);

var
Form1: TForm1;
hTooltip: Cardinal;
ti: TToolInfo;
buffer: array[0..255] of char;

implementation

{$R *.dfm}

procedure CreateToolTips(hwnd: Cardinal);
begin
hTooltip := CreateWindowEx(0, 'Tooltips_Class32', nil,
TTS_ALWAYSTIP or TTS_BALLOON,
Integer(CW_USEDEFAULT),
Integer(CW_USEDEFAULT),
Integer(CW_USEDEFAULT),
Integer(CW_USEDEFAULT),
hwnd, 0, hInstance, nil);
if hTooltip <> 0 then
begin
SetWindowPos(hTooltip, HWND_TOPMOST, 0, 0, 0, 0,
SWP_NOMOVE or SWP_NOSIZE or SWP_NOACTIVATE);
ti.cbSize := SizeOf(TToolInfo);
ti.uFlags := TTF_SUBCLASS;
ti.hInst := hInstance;
end;
end;

procedure AddToolTip(hwnd: DWORD; lpti: PToolInfo; IconType: Integer; Text, Title: PChar);
var
Item: THandle;
Rect: TRect;
begin
Item := hwnd;
if (Item <> 0) and (GetClientRect(Item, Rect)) then
begin
lpti.hwnd := Item;
lpti.Rect := Rect;
lpti.lpszText := Text;
SendMessage(hTooltip, TTM_ADDTOOL, 0, Integer(lpti));
FillChar(buffer, SizeOf(buffer), #0);
lstrcpy(buffer, Title);
if (IconType > 3) or (IconType < 0) then IconType := 0;
SendMessage(hTooltip, TTM_SETTITLE, IconType, Integer(@buffer));
end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
CreateToolTips(Form1.Handle);
AddToolTip(Memo1.Handle, @ti, 0, '测试飞跃提示', '无图标提示');
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
CreateToolTips(Form1.Handle);
AddToolTip(Memo1.Handle, @ti, 1, '测试飞跃提示', '信息图标');
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
CreateToolTips(Form1.Handle);
AddToolTip(Memo1.Handle, @ti, 2, '测试飞跃提示', '警告图标');
end;

procedure TForm1.Button4Click(Sender: TObject);
begin
CreateToolTips(Form1.Handle);
AddToolTip(Memo1.Handle, @ti, 3, '测试飞跃提示', '错误图标');
end;

end.
 
在说第一个:

procedure TForm1.FormKeyUp(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin

if (ssAlt in Shift) and (KEY=VK_F4) THEN
KEY:=0;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
Form1.KeyPreview:=tRUE;
end;

end.

托盘图标呢,你可以可以使用第三方的.
也可以自己写.你自己看Delphi6/source/vcl/scktsvr.dpr就是使用这个的..
自己看看吧..
 

Similar threads

D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
794
DelphiTeacher的专栏
D
D
回复
0
查看
653
DelphiTeacher的专栏
D
后退
顶部