Class FRMessageBox
Provides the message functions.
Inheritance
System.Object
FRMessageBox
Namespace: FastReport.Utils
Assembly: FastReport.dll
Syntax
public static class FRMessageBox
Methods
Confirm(String, MessageBoxButtons)
Shows Message Box with confirmation.
Declaration
public static DialogResult Confirm(string msg, MessageBoxButtons buttons)
Parameters
Type | Name | Description |
---|---|---|
System.String | msg | The message. |
System.Windows.Forms.MessageBoxButtons | buttons | The dialog buttons. |
Returns
Type | Description |
---|---|
System.Windows.Forms.DialogResult | The dialog result. |
Error(String)
Shows the Message Box with error message.
Declaration
public static void Error(string msg)
Parameters
Type | Name | Description |
---|---|---|
System.String | msg | The message. |
Information(String)
Shows information Message Box.
Declaration
public static void Information(string msg)
Parameters
Type | Name | Description |
---|---|---|
System.String | msg | The message. |
Warning(String)
Shows the Message Box with warning message.
Declaration
public static void Warning(string msg)
Parameters
Type | Name | Description |
---|---|---|
System.String | msg | The message. |