what needed to run dotnet app on win2k computer?

  • Thread starter Thread starter Rich
  • Start date Start date
R

Rich

Hello,

I created a small dotnet exe on a workstation with
VS.Net. When I tried loading this app on another
workstation (win2k), an error message said I was missing
some dll. If I load the dotnet framework 1.1 would that
fix my problem? Do I need to load the CLR first on a
workstation and then load the app. Is this correct?

Suggestions appreciated.
Thanks,
Rich
 
Thank you. Yes, I meant install. And yes, that did the
trick! I am having so much fun with dotnet! (finally, I
am starting to feel like a real programmer :)
 
* "Rich said:
I created a small dotnet exe on a workstation with
VS.Net. When I tried loading this app on another
workstation (win2k), an error message said I was missing
some dll. If I load the dotnet framework 1.1 would that
fix my problem? Do I need to load the CLR first on a
workstation and then load the app. Is this correct?

You will have to install the .NET Framework and maybe some other
components (MDAC) in order to be able to run the .NET application. The
CLR is started automatically, you don't have to worry about that.
 
Back
Top