|
|
|
|
|
EmailProgressBar (Function) In french: EmailJauge Manages a progress bar while sending and receiving emails. Remark: Sending or IncomingData emails includes both the email message and the files attached to the email.
EmailProgressBar(JAUGE_JaugeEmail)
...
EmailProgressBar("")
Syntax
Displaying the progress bar in a Progress Bar control Hide the details
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 Hide the details
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 <Nom de la procédure> (<Total>, <Progression>) 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. Remarks - 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.
Related Examples:
|
Complete examples (WINDEV): WD Mail
[ + ] This application is an email client developed in WINDEV. It is based on the Email objects. This email client is used to retrieve and send emails by using the POP, IMAP and SMTP protocols. You have the ability to apply filters to the incoming emails. The application can also be used to manage several email accounts. The writing of an email is based on the HTML edit control.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|