Hi All, I have a .dll file that I have mapped to with a virtual directory so it can be referenced at (http://Localhost/WEBDEP/EX.dll). I than created a stub app that I based off of the "Death of the Browser doco" as follows:

Try
'Download the assembly from a web server over HTTP
Dim sLocation As String
sLocation = _
"http://Localhost/WEBDEP/EX.dll"
Dim formAsm As [Assembly] = [Assembly].LoadFrom(sLocation)
'Get the Form from the assembly
Dim formtype As Type = formAsm.GetType("EX.Form1")
'Create an instance of the Form
Dim FormObj As Object
FormObj = Activator.CreateInstance(formtype)
'Cast it to a Form object to enable early binding and show the form
Dim Form1 As Form = CType(FormObj, Form)
Form1.Show()
Catch exc As Exception
MsgBox(exc.ToString)
End Try
=================================

When I run this I receive an error when it hits the following line:
Dim formAsm As [Assembly] = [Assembly].LoadFrom(sLocation)

The error is "File or assembly name EX.dll, or one of its dependencies, was not found."

Has anyone came across this problem before? Or can anyone give me any help at all? I have been banging my head against this one for quite a few hours and any help would sooth this headache that I have got.

Thanks in advance