w95 application
-
i have a boot disk that boots into 95 mode and brings me to the command prompt. i've made a console app in c# but when i run it it says 'cannot be run in dos mode'. what can i do to fix this? thanks, Rob Tomson -- There are 10 kinds of people. Those who understand binary and those who don't.
-
i have a boot disk that boots into 95 mode and brings me to the command prompt. i've made a console app in c# but when i run it it says 'cannot be run in dos mode'. what can i do to fix this? thanks, Rob Tomson -- There are 10 kinds of people. Those who understand binary and those who don't.
For one, .NET does not work on Win95. Second, if you boot from a floppy disk on a supporting platform (like Win98), the CLR and the .NET Framework Class Library (FCL) at the very least must be loaded, and those definitely won't fit on a floppy disk. There's so many reasons why this won't work. You really need to read the .NET Framework SDK.
Microsoft MVP, Visual C# My Articles
-
For one, .NET does not work on Win95. Second, if you boot from a floppy disk on a supporting platform (like Win98), the CLR and the .NET Framework Class Library (FCL) at the very least must be loaded, and those definitely won't fit on a floppy disk. There's so many reasons why this won't work. You really need to read the .NET Framework SDK.
Microsoft MVP, Visual C# My Articles
then what would you suggest to write a w95 dos mode application? thanks, Rob -- There are 10 kinds of people. Those who understand binary and those who don't.
-
then what would you suggest to write a w95 dos mode application? thanks, Rob -- There are 10 kinds of people. Those who understand binary and those who don't.
C, using old Win32 APIs from the Platform SDK.
Microsoft MVP, Visual C# My Articles