ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Managing emails
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Manages a progress bar while sending and receiving emails.
Remark: The progress bar is displayed when sending or receiving emails as well as the files attached to the email.
Example
// Display the progress bar in the PROGBAR_EmailProgress control (Syntax 1)
EmailProgressBar(PROGBAR_EmailProgress)
...
// Cancel this progress bar
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 given for information 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 <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 given for information 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:
WD Mail 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.
Component: wd290com.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help