| ctLanAndDial = &H0 | 0 | Connect using LAN. Modem is used if LAN connection is not available |
| ctDialer = &H1 | 1 | 3rd party dialer |
| ctAlwaysDial = &H2 | 2 | Always connect to this account using dial-up |
| ctLAN = &H3 | 3 | Connect using LAN. |
'ConnectionTypes - begin Public Const ctLanAndDial = &H0 'Connect using LAN. Modem is used if LAN connection is not available Public Const ctDialer = &H1 '3rd party dialer Public Const ctAlwaysDial = &H2 'Always connect to this account using dial-up Public Const ctLAN = &H3 'Connect using LAN. 'ConnectionTypes - end
'ConnectionTypes - begin Public Const ctLanAndDial As Long = &H0 'Connect using LAN. Modem is used if LAN connection is not available Public Const ctDialer As Long = &H1 '3rd party dialer Public Const ctAlwaysDial As Long = &H2 'Always connect to this account using dial-up Public Const ctLAN As Long = &H3 'Connect using LAN. 'ConnectionTypes - end
Public Enum ConnectionTypes ctLanAndDial = &H0 'Connect using LAN. Modem is used if LAN connection is not available ctDialer = &H1 '3rd party dialer ctAlwaysDial = &H2 'Always connect to this account using dial-up ctLAN = &H3 'Connect using LAN. End Enum 'ConnectionTypes
//ConnectionTypes - begin var ctLanAndDial = 0x0; //Connect using LAN. Modem is used if LAN connection is not available var ctDialer = 0x1; //3rd party dialer var ctAlwaysDial = 0x2; //Always connect to this account using dial-up var ctLAN = 0x3; //Connect using LAN. //ConnectionTypes - end
// ConnectionTypes
typedef [helpcontext(0x20077), helpstring("Specifies connection types of this email account to the internet. Local LAN connection, dial-up (modem) or dialer.")]
enum ConnectionTypes{
[helpcontext(0x20077), helpstring("Connect using LAN. Modem is used if LAN connection is not available")]
ctLanAndDial = 0x0,
[helpcontext(0x20077), helpstring("3rd party dialer")]
ctDialer = 0x1,
[helpcontext(0x20077), helpstring("Always connect to this account using dial-up")]
ctAlwaysDial = 0x2,
[helpcontext(0x20077), helpstring("Connect using LAN.")]
ctLAN = 0x3
} ConnectionTypes;