>
>
i tried this:
>
Dim result As DialogResult
>
result = ofd1.ShowDialog ()
>
If result = Windows.Forms.D ialogResult.OK Then
''
'' for this example ofd1.filename =
"c:\windows\sys tem32\wininet.d ll"
''
System.Diagnost ics.Process.Sta rt("C:\Program Files\Microsoft
Visual _Studio 8\SDK\v2.0\Bin\ tlbimp.exe " & ofd1.FileName &
"/out:myTest.dll" )
Threading.Threa d.Sleep(5000)
System.Diagnost ics.Process.Sta rt("C:\Program Files\Microsoft
Visual _Studio 8\SDK\v2.0\Bin\ ildasm.exe myTest.dll/out:myTest.il")
End If
>
but it doesn't work. error is - file not found.
Comment