LInet::EnableAutoWnd
#include "ltwrappr.h"
L_VOID LInet::EnableAutoWnd(bFlag=TRUE)
|
L_BOOL bFlag; |
/* flag that indicates whether to enable automatic processing */ |
Enables or disables auto processing for adding or removing remote computers to or from the connection list window.
|
Parameter |
Description | |
|
bFlag |
Flag that indicates whether to enable or disable automatic processing for adding and removing remote computers from the connection list window. Possible values are: | |
|
|
Value |
Meaning |
|
|
TRUE |
Enable auto processing. |
|
|
FALSE |
Disable auto processing. |
Returns
None.
Comments
If auto process is enabled, then adding and removing remote computers to and from the connection list window will be performed automatically.
Required DLLs and Libraries
|
LTNET For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
|
Functions: |
LInet::AddWndItem, LInet::RemoveWndItem, LInet::RemoveAllWndItems, LInet::IsWndItem, LInet::IsAutoWndEnabled, Class Members |
Example
L_INT LInet__EnableAutoWndExample()
{
LInet Inet;
if (Inet.IsAutoWndEnabled() == FALSE)
Inet.EnableAutoWnd();
else
return FAILURE;
return SUCCESS;
}