Registriert seit: 20. Feb 2006
33 Beiträge
|
Dialog wird nicht angezeigt
19. Mär 2006, 19:17
Hallo zusammen,
kann mir bitte jemand erklären, warum der Dialog nicht angezeigt wird?
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TForm1 = class(TForm)
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
function DlgFunc(hwnd: HWND; umsg: UINT; wparam: WPARAM; lparam: LPARAM): BOOL; stdcall;
begin
Result := True;
case umsg of
WM_INITDIALOG:
begin
SetDlgItemText(hwnd, 1001, ' Here the text will be received')
end;
WM_CLOSE:
begin
end;
WM_COMMAND:
else
end;
end;
begin
DialogBoxParam(hInstance, MakeIntResource(1001), 0, @dlgfunc, 0);
end.
|
|
Zitat
|