Return to package dfl. www.dprogramming.com

module dfl.messagebox

enums
MsgBoxButtons MsgBoxDefaultButton MsgBoxIcon MsgBoxOptions
functions
msgBox msgBox msgBox msgBox msgBox msgBox msgBox msgBox msgBox msgBox msgBox

msgBox
public DialogResult msgBox(char[] txt, char[] caption, MsgBoxButtons buttons);

msgBox
public DialogResult msgBox(IWindow owner, char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon, MsgBoxDefaultButton defaultButton, MsgBoxOptions options);

msgBox
public DialogResult msgBox(IWindow owner, char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon, MsgBoxDefaultButton defaultButton);

msgBox
public DialogResult msgBox(char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon, MsgBoxDefaultButton defaultButton);

msgBox
public DialogResult msgBox(IWindow owner, char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon);

msgBox
public DialogResult msgBox(char[] txt, char[] caption, MsgBoxButtons buttons, MsgBoxIcon icon);

msgBox
public DialogResult msgBox(IWindow owner, char[] txt, char[] caption, MsgBoxButtons buttons);

msgBox
public DialogResult msgBox(IWindow owner, char[] txt, char[] caption);

msgBox
public DialogResult msgBox(char[] txt, char[] caption);

msgBox
public DialogResult msgBox(IWindow owner, char[] txt);

msgBox
public DialogResult msgBox(char[] txt);

MsgBoxButtons
public enum MsgBoxButtons
{
	ABORT_RETRY_IGNORE,
	OK,
	OK_CANCEL,
	RETRY_CANCEL,
	YES_NO,
	YES_NO_CANCEL,
}

MsgBoxDefaultButton
public enum MsgBoxDefaultButton
{
	BUTTON1,
	BUTTON2,
	BUTTON3,
	BUTTON4,
}

MsgBoxIcon
public enum MsgBoxIcon
{
	NONE,
	ASTERISK,
	ERROR,
	EXCLAMATION,
	HAND,
	INFORMATION,
	QUESTION,
	STOP,
	WARNING,
}

MsgBoxOptions
public enum MsgBoxOptions
{
	DEFAULT_DESKTOP_ONLY,
	RIGHT_ALIGN,
	LEFT_ALIGN,
	SERVICE_NOTIFICATION,
}