Board index » delphi » Options in Messageboxes (or system dialogs).
David K
![]() Delphi Developer |
Fri, 07 Mar 2003 03:00:00 GMT
|
David K
![]() Delphi Developer |
Fri, 07 Mar 2003 03:00:00 GMT
Options in Messageboxes (or system dialogs).
Hello,
I know I've seen the hint for this topic before, but I can't seem to locate Thanks, David |
Team
![]() Delphi Developer |
Fri, 07 Mar 2003 03:00:00 GMT
Re:Options in Messageboxes (or system dialogs).QuoteIn article <8q5g1i$1j...@bornews.borland.com>, David K wrote: scratch, there is a function CreateMessageDialog in dialogs.pas that will create the standard message form, but not show it. You can then add a checkbox to the form (in code) and grow the form vertically to make room for it. Then you ShowModal it. As far as i know there is no common dialog for this purpose (and MessageDlg is a pure VCL dialog anyway, not a Windows dialog). Peter Below (TeamB) 100113.1...@compuserve.com) |
Gerrit Beuz
![]() Delphi Developer |
Sat, 08 Mar 2003 03:00:00 GMT
Re:Options in Messageboxes (or system dialogs).Quote>In article <8q5g1i$1j...@bornews.borland.com>, David K wrote: Gerrit Beuze unit CondMsgDlg; interface uses SysUtils, Classes, Controls, Forms, StdCtrls, Dialogs; function CondMessageDlg(const Msg: string; DlgType: TMsgDlgType; implementation function CondMessageDlg(const Msg: string; DlgType: TMsgDlgType; end. |