Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than mpr, prefix the name with the module name and a period.
// NETRESOURCE defined as struct
[DllImport("mpr.dll", CharSet=CharSet.Auto, SetLastError=true)]
public static extern int WNetAddConnection3(
[In] IntPtr handleToOwnerWindow,
[In] ref NETRESOURCE netResource,
[In] string password,
[In] string userName,
[In] int flags);
// NETRESOURCE defined as class
[DllImport("mpr.dll", CharSet=CharSet.Auto, SetLastError=true)]
public static extern int WNetAddConnection3(
[In] IntPtr handleToOwnerWindow,
[In] NETRESOURCE netResource,
[In] string password,
[In] string userName,
[In] int flags);
VB .NET Signature:
Declare Function WNetAddConnection3 Lib "mpr.dll" (TODO) As TODO
public static int WNetAddConnection2(
NETRESOURCE netResource,
string password,
string username,
int flags)
{
return(WNetAddConnection3(null, netResource, password, username, flags);
}
Sample Code:
Please add some!
Alternative Managed API:
TODO
TODO - a short description
11/1/2010 9:34:42 AM - 220.10.204.141
TODO - a short description
11/1/2010 9:34:42 AM - 220.10.204.141
The WNetAddConnection2 function makes a connection to a network resource. The function can redirect a local device to the network resource.
9/5/2012 10:52:40 PM - -78.237.25.102
TODO - a short description
11/1/2010 9:34:42 AM - 220.10.204.141
The WNetAddConnection2 function makes a connection to a network resource. The function can redirect a local device to the network resource.
9/5/2012 10:52:40 PM - -78.237.25.102
TODO - a short description
11/1/2010 9:34:42 AM - 220.10.204.141
TODO - a short description
11/1/2010 9:34:42 AM - 220.10.204.141
The WNetAddConnection2 function makes a connection to a network resource. The function can redirect a local device to the network resource.
9/5/2012 10:52:40 PM - -78.237.25.102
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).