Product Logo

POP3it Pro

Email downloading made easy.

Functions
FunctionPOP3it_Adv_AddAccount
FunctionPOP3it_Adv_Connect
FunctionPOP3it_Adv_ConnectFile
FunctionPOP3it_Adv_Delete
FunctionPOP3it_Adv_DeleteAll
FunctionPOP3it_Adv_Disconnect
FunctionPOP3it_Adv_GetAccountOption
FunctionPOP3it_Adv_GetAttachment
FunctionPOP3it_Adv_GetAttachmentCount
FunctionPOP3it_Adv_GetAttachmentFileName
FunctionPOP3it_Adv_GetBody
FunctionPOP3it_Adv_GetDate
FunctionPOP3it_Adv_GetFullSource
FunctionPOP3it_Adv_GetHeader
FunctionPOP3it_Adv_GetMessageCount
FunctionPOP3it_Adv_GetSize
FunctionPOP3it_Adv_GetUniqueID
FunctionPOP3it_Adv_GoToMessage
FunctionPOP3it_Adv_HasBodyType
FunctionPOP3it_Adv_IsConnected
FunctionPOP3it_Adv_RemoveAccount
FunctionPOP3it_Adv_SaveAttachment
FunctionPOP3it_Adv_SetAccountOption
FunctionPOP3it_Adv_UndeleteAll
FunctionPOP3it_CheckAccount
FunctionPOP3it_CheckFile
FunctionPOP3it_Configure
FunctionPOP3it_ConfigureAccount
FunctionPOP3it_DisplayMessage
FunctionPOP3it_File_Copy
FunctionPOP3it_File_Delete
FunctionPOP3it_File_Exists
FunctionPOP3it_File_Export
FunctionPOP3it_File_Import
FunctionPOP3it_File_Move
FunctionPOP3it_File_Read
FunctionPOP3it_File_Rename
FunctionPOP3it_File_SelectWithDialog
FunctionPOP3it_File_Size
FunctionPOP3it_File_Timestamp
FunctionPOP3it_File_Write
FunctionPOP3it_Folder_Create
FunctionPOP3it_Folder_Delete
FunctionPOP3it_Folder_Exists
FunctionPOP3it_Folder_GetPath
FunctionPOP3it_Folder_List
FunctionPOP3it_Folder_Rename
FunctionPOP3it_Folder_SelectWithDialog
FunctionPOP3it_GetAccountNames
FunctionPOP3it_QuoteMessage
FunctionPOP3it_Register
FunctionPOP3it_StatusWindow
FunctionPOP3it_Version
FunctionPOP3it_VersionNumber

POP3it_StatusWindow

NamePOP3it_StatusWindow
Description

This function Shows, Hides, or Moves the Status Window. The first parameter tells POP3it Pro what to do with the StatusWindow. Specify “Show” to Show the StatusWindow, “Hide” to Hide the Status Window, and “Move” to Move the Status Window. If you need to determine if the Status Window is currently visible, you can specify “State” as the first parameter. When Showing or Moving the Status Window, you can specify the Left and Top pixel coordinates for the Status Window. If you specify -1 for either the Left or Top parameter, the Status Window will be centered on that axis. (In other words, if you specified -1 for the Left parameter, POP3it Pro would display the Status Window in the center of the main screen horizontally. If you specify -1 for both Left and Top, POP3it Pro will place the Status Window in the exact center of the main screen.) If you specify 0 for either the Left or Top parameter, POP3it Pro will use the last known position of the Status Window when it was last closed. You can also set a custom Window Title for the Status Window using the final WindowTitle parameter. Note: The Status Window has a Cancel button on it that can be used to cancel lengthy email downloads or imports, so it’s a good idea to always show the Status Window when downloading or importing emails.

Return TypeText
FormatPOP3it_StatusWindow ( Action ; Left ; Top ; WindowTitle )
Required Parameters
Action

Show - Shows the Status Window
Hide - Hides the Status Window
Move - Moves the Status Window to the position defined in the Left and Top parameters.
State - Tells you whether or not the Status Window is currently visible.

Optional Parameters
Left

Tells POP3it Pro the Left pixel position for the Status Window to be Shown at or Moved to. Specify -1 to center horizontally or 0 to use the last known Left position. The default is 0.

Top

Tells POP3it Pro the Top pixel position for the Status Window to be Shown at or Moved to. Specify -1 to center vertically or 0 to use the last known Top Position. The default is 0.

WindowTitle

Specifies a custom Window Title for the Status Window. You can change the Title of the Status Window at any time by using the “Show” Action and specifying the new Window Title.

Examples
Example 1

Displays the Status Window in the center of the main screen.

POP3it_StatusWindow( "Show" ; -1 ; -1 )
Example 2

Hides the Status Window.

POP3it_StatusWindow( "Hide" )
Example 3

Determines whether or not the Status Window is currently visible.

POP3it_StatusWindow( "State" )
Example 4

Moves the Status Window to the Top, Left corner of the main screen (100 pixels down and 100 pixels to the right), and sets the Window Title to "Downloading Email...".

POP3it_StatusWindow( "Move" ; 100 ; 100 ; "Downloading Email..." )