|
Categories: Dialogs
|
Tags: Developers, Windows & Dialogs, 1. Beginner, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
Revision:
1
Posted:
04/Jan/2009
Updated:
04/Jan/2009
Status:
Publish
Types: Code
|
MessageBox.Show(
"Are you sure you want to delete this allocation?",
"Confirm deletion",
MessageBoxButtons.YesNo,
delegate(object newSender, EventArgs newArgs)
{
if (((MessageBoxWindow)newSender).DialogResult == DialogResult.Yes)
{
... do your 'yes' stuff here ...
};
}
);
About the author
Related Articles
|
Dialogs
|
|
|
Tags:
Windows & Dialogs, 1. Beginner, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
|
|
|
This video demonstrates how to create a Visual WebGui dialog.
Tags:
Windows & Dialogs, 1. Beginner, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
|
|
|
This video demonstrates how to integrate CHM help files into Visual WebGui, so that your user can get a CHM like window opened at the exact point of interest.
Tags:
Architects, Developers, Windows & Dialogs, 1. Beginner, Integration, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
|
|
|
This video demonstrates how to return parameters from dialogs.
Tags:
Architects, Developers, Windows & Dialogs, 1. Beginner, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
|
|
|
Tags:
Developers, Windows & Dialogs, 1. Beginner, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
|
|
|
This video demonstrates how to use the MessageBox class in Visual WebGui.
Tags:
Developers, Windows & Dialogs, 1. Beginner, Pre v6.3, v6.3, v6.4 and Later, 2. Intermediate, 3. Advanced
|
|
|
|