Good morning
I am using vb.net 2005 and I have a piece of code which has been written in VB.net 2003 the code is
In Error list I get Type 'MapDrive.MapDrive' is not defined how can I
fix this.And in future if I find myself in a similar situation where should I look
for new classes that substitude the old ones
Thanks for your help
mo
I am using vb.net 2005 and I have a piece of code which has been written in VB.net 2003 the code is
VB.NET:
Dim MD As New MapDrive.MapDrive
If Not MD.MapDrive("", pCSIIUNC, pCSIIUserName, pCSIIPassword) Then
LogMsg("Copy2CSII: Could not map network drive to " & pCSIIUNC)
End If
...
try
...
Catch
...
Finally
MD.UnMapDrive(pCSIIUNC)
End Try
fix this.And in future if I find myself in a similar situation where should I look
for new classes that substitude the old ones
Thanks for your help
mo
Last edited by a moderator: