Advertisement
2002ASP Windows API Call/ Explanation #4737

Connect to a remote share AUTOMATICALLY, with NO user input.

Ive seen a lot of source code that can bring up the window asking the user to connect to a remote share, but none of which would work without user input. This API call (WNetAddConnection) is very easy and simple to use, altho i cant guarrentee it will work on 98/ME.... tHe_cLeanER

AI

Résumé par IA: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Code source
original-source
Option Explicit
Private Declare Function WNetAddConnection Lib "mpr.dll" Alias "WNetAddConnectionA" (ByVal lpszNetPath As String, ByVal lpszPassword As String, ByVal lpszLocalName As String) As Long
Private Sub Form_Load()
Dim r As Long
r = WNetAddConnection("\\dedicated\xpserver", vbNullString, "x:")
If r <> 0 Then
 MsgBox "ERROR: " & Err.Description
End If
End Sub
Commentaires originaux (3)
Récupéré via Wayback Machine