|
|
|
|
|
EmailProgressBar (Function) Manages a progress bar while sending and receiving emails. Note Sending or receiving Email includes both the message and the files attached to the Email.
EmailProgressBar(PROGBAR_EmailProgress)
...
EmailProgressBar("")
Sintaxis
Displaying the progress bar in a Progress Bar control Ocultar los detalles
EmailProgressBar(<Name of Progress Bar control> [, <Frequency>])
<Name of Progress Bar control>: Character string Name of the Progress Bar control where the progress bar will be displayed. This control must exist in the current window.If this parameter corresponds to an empty string (""), the current progress bar is canceled. <Frequency>: Optional integer Specifies the frequency for refreshing the progress bar (in bytes). The default frequency is set to 10.000 (the progress bar is refreshed every 10 KB). Caution: this frequency is for guidance only.
Managing the progress bar via a procedure Ocultar los detalles
EmailProgressBar(<WLanguage procedure> [, <Frequency>])
<WLanguage procedure>: Procedure name Name of the WLanguage procedure that will manage the progress bar. This procedure has the following format:
PROCEDURE <Procedure name> (<Total>, <Progress>) where: - <Total> is the number of bytes to transmit or to receive.
- <Progress> is the number of bytes already transmitted or received.
These parameters can be used in the procedure at any time. If this parameter corresponds to an empty string (""), the current progress bar is canceled. <Frequency>: Optional integer Specifies the frequency for refreshing the progress bar (in bytes). The default frequency is set to 10,000 (the procedure is called every 10 KB). Caution: this frequency is for guidance only. Observaciones - EmailProgressBar must be called before the read and send email functions.
- EmailProgressBar can only be used for the SMTP, POP3 and IMAP protocols. This function is not available in Outlook.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|