Subject: Did you look at HELP @DialogBox?
Hi Michael,
Below is the code I have.
SendTo = ws.DialogBox (“FCRReportSendTo1”, True , True , False ,False , False ,False, “Select the receipents”, SendToDoc)
I saw the description of the size of the dialog, but I don’t know the syntax. This is what I saw and something is similar to the one below. I didn’t see example of resizing the dialogbox.
Please let me know when you have a chance.
Thanks,
MW
- A form called “Profile” contains a button whose formula is
@DialogBox(“Profile Options”; [AUTOHORZFIT] : [AUTOVERTFIT] )
Both Profile and Profile Options have a field named “Comments.” When the user clicks the button, the document is displayed in a dialog box, using the Profile Options form. The dialog box is scaled to fit the layout region on Profile Options.
The user can interact with the dialog box, for example, by editing the Comments field.
The user clicks OK. The changes made to the Comments field are reflected in the document, if it is in Edit mode.
- This formula displays a form named “Help screen” for reading only.
@DialogBox(“Help screen”; [AUTOHORZFIT] : [AUTOVERTFIT] : [NOCANCEL] : [NONEWFIELDS] : [READONLY]; “Help”)
- This formula sizes the table in the form to the dialog box and does not display the OK button.
@DialogBox( “Table Test” ; [AUTOHORZFIT] : [AUTOVERTFIT] : [SIZETOTABLE] : [NOOKCANCEL])
- This formula displays the “info” form in a dialog box entitled, “Provide information,” that has no dialog box buttons. The only way the user can close this form to return to the current document is to click the Close icon in the upper right corner of the dialog box.
@DialogBox(“info”;[NOCANCEL]:[NOOKCANCEL];“Provide information”)