Quote:
Originally Posted by anwipr
@ForrestCroce: I tried downloading it, but when I ran it, a " .NET Framework Initialization Error " came up. I have no idea what that is; it told me I needed to install some .NET framework... ???
|
Ahh... The Microsoft .NET Framework is a part of Windows, but an optional part. Windows has always run pure machine code from C++, but now that computers are getting so much faster and software more advanced, MS is switching to "managed code." It can't do all of what machine code can do, like "buffer overruns" and other types of errors that can corrupt shared memory. "Managed" or .NET code does things like check the buffer's limits before trying to read or write part of it. Programs for .NET can have logic errors and not do what you want, but they can't crash and bring down the rest of the O/S or other running programs. At least that's the hype from MS.
Anyway, almost all of the development I do is in C# which is a Microsoft .NET programming language. So it will only run on systems that have the .NET Framework on them, and it has to be 2.0 or later. The good news is it's free; the bad news is downloading it won't extend the security benefits to non-managed code.
If you'd like to install the framework, Microsoft hosts it here:
http://msdn2.microsoft.com/en-us/net.../aa731542.aspx
Quote:
.NET Framework Version 2.0 Software Development Kit
This SDK includes everything you need to write, build, test, and deploy .NET Framework applications—documentation, samples, and command-line tools and compilers. You must install the .NET Framework version 2.0 Redistributable Package prior to installing the SDK.
|
In your shoes, I might try a different client instead of installing a new module into Windows. I think my software is wonderful because it does the specific things I do often, but those might not always be the way you work, and you've got by this far without the framework. I can't recommend one, though, because I wrote my own instead of trying something else. But Windows itself works; if you double click "My Computer" and then type ftp://domain.com into the address bar, it'll prompt you to log in.
I really need to write an msi package or something to test for this stuff during the install.
|