Informational Dialogs

The Informational Dialogs are Paradox for Windows message box replacements. These message boxes are larger than the ones provided in Paradox for Windows
so you have more space to provide text errors and warnings to your users. In addition, the wwDlg_MsgInfo and wwDlg_MsgInfoCenter dialogs make great
About boxes! 

wwDlg_MsgAttention
	Display a left-justified text message in a dialog box with the
	exclamation point "!" icon and OK button.
wwDlg_MsgAttentionCenter
	Display a centered text message in a dialog box with the
	exclamation point "!" icon and OK button.
wwDlg_MsgInfo
	Display a left-justified text message in a dialog box with the
	information "i" icon and OK button.
wwDlg_MsgInfoCenter
	Display a centered text message in a dialog box with the
	information "i" icon and OK button.

Using any of the ezDialogs Informational dialog boxes is just as easy as using the standard Paradox for Windows dialogs they replace. Anywhere
you need to display a message to the user, just enter the name of the dialog you want to call, it's title and the message:

ezDlg.wwDlg_MsgInfoCenter("This is the Title",
		"And this is a centered message.")
