Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
NOVELL
Message
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Re: NOVELL
Miscellaneous
Thread ID:
00117137
Message ID:
00117542
Views:
20
>>It is giving error WNetAddConnection function not found..
>>
>>Please help me.
>>
>>Regards
>>MMK
>
>
>FUNCTION AddConn
>LPARAMETERS cUNCToMap, cDriveLetter, cPasswordToUse
>IF TYPE('cUNCToMap') # 'C' OR TYPE('cDriveLetter') # 'C'
>	RETURN .F.
>ENDIF
>IF TYPE('cPasswordToUse') # 'C'
>	cPasswordToUse = ''
>ENDIF
>
>DECLARE INTEGER WNetAddConnection IN Win32API ;
> STRING cRemoteUNC, ;
> STRING cPassword, ;
> STRING cLocalDrive
>
>RETURN (WNetAddConnection( cUNCToMap, cPasswordToUse + CHR(0), cDriveLetter) = 0)
>
Ed,

I think the declaration should be:
DECLARE INTEGER WNetAddConnection IN Win32API;
  STRING @lpszRemoteName, STRING @lpszPassword, STRING @lpszLocalName
with all parameters being passed by reference. So, using your example:
RETURN (WNetAddConnection(@cUNCToMap, 0, @cDriveLetter) = 0)
will work.

If Nishit has access to this past May's issue of FoxPro Advisor, he can see may article on this subject for additional information.
George

Ubi caritas et amor, deus ibi est
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform