bdeShowBlockParametersDialog
Shows the given dialog box.
Syntax
bdeShowBlockParametersDialog(dialog, caption, modal)
Inputs
- dialog
 - The dialog to show.
 - caption
 - The caption for the dialog box. Descriptor for what the dialog box means.
 - modal
 - Boolean that represents whether you are able to interact with just the dialog box or the dialog box and everything behind it. true - have to interact with the dialog before you can interact with anything behind it. false - You are able to interact with anything.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          dialog = bdeCreateBlockParametersDialogFromBlock(block, widget, false);
          bdeShowBlockParametersDialog(dialog, 'Test Parameters Dialog', true);