Give Us a Call: +1-877-99-BOPUP

VBAccountStruct structure

Specifies or retrieves information on a user account. Used to create, modify, save own account and view other user accounts.

Public Structure VBAccountStruct     Dim ModifiedFields As UInteger     Dim Active As Boolean     Dim Account As String     Dim FirstName As String     Dim LastName As String     Dim Description As String     Dim Title As String     Dim Department As String     Dim Phone As String     Dim Email As String     Dim WWW As String     Dim Notes As String End Structure

Members

ModifiedFields
Array of bitwise flags that indicate which of the other structure members can be changed by the user. These flags are set on the IM server and cannot be changed by users. This member can include one or more of the following values:
VBAccountFieldFlag.Account
Indicates that the Account can be changed.
VBAccountFieldFlag.FirstName
Indicates that the FirstName can be changed.
VBAccountFieldFlag.LastName
Indicates that the LastName can be changed.
VBAccountFieldFlag.Description
Indicates that the Description can be changed.
VBAccountFieldFlag.Title
Indicates that the Title can be changed.
VBAccountFieldFlag.Department
Indicates that the Department can be changed.
VBAccountFieldFlag.Phone
Indicates that the Phone can be changed.
VBAccountFieldFlag.Email
Indicates that the Email can be changed.
VBAccountFieldFlag.WWW
Indicates that the WWW can be changed.
VBAccountFieldFlag.Notes
Indicates that the Notes can be changed.
Active
This member indicates a status of the user account. True value means that the account is enabled and if the account is disabled on the IM server this member is set to False.
Account
Contains the name of user account that is primary used between the client and IM server.
FirstName
Contains user's first name.
LastName
Contains user's last name.
Description
Contains description of the user account.
Title
Contains user's title.
Department
Contains user's department.
Phone
Contains user's phone.
Email
Contains user's e-mail address.
WWW
Contains user's webpage or URL.
Notes
Contains additional information about the user.