473,661 Members | 2,457 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VC2003 & Last PSDK for Legacy Platforms

I feel a bit dumb for asking this but I lost my documentation in an
accident. Could someone confirm the last supported PSDK for VC2003 and
95/98/ME & NT4?

--
Charles E Hardwidge

Sep 20 '08 #1
11 1553
Charles E Hardwidge wrote:
I feel a bit dumb for asking this but I lost my documentation in an
accident. Could someone confirm the last supported PSDK for VC2003 and
95/98/ME & NT4?
Charles:

1. To my knowledge, the PSDK is still backward compatible to older OS's. By
setting WINVER etc. you can eliminate features available only on later OS's.

2. Also to my knowledge, there are no limitations on the version of the PSDK
that can be used with VS2003 (VC7.1).

3. The last version of VC to officially support Windows 95 was VC6. The latest
PSDK usable with VC6 was February 2003.

--
David Wilkinson
Visual C++ MVP
Sep 20 '08 #2
"David Wilkinson" <no******@effis ols.comwrote in message
news:#l******** ******@TK2MSFTN GP05.phx.gbl...
Charles E Hardwidge wrote:
>I feel a bit dumb for asking this but I lost my documentation in an
accident. Could someone confirm the last supported PSDK for VC2003 and
95/98/ME & NT4?

1. To my knowledge, the PSDK is still backward compatible to older OS's.
By setting WINVER etc. you can eliminate features available only on later
OS's.

2. Also to my knowledge, there are no limitations on the version of the
PSDK that can be used with VS2003 (VC7.1).

3. The last version of VC to officially support Windows 95 was VC6. The
latest PSDK usable with VC6 was February 2003.
Thanks Dave.

Things are looking that way but VC++2003 is internally documented as
supporting 95 and NT4, and I have a recollection that Microsoft commented
that a later PSDK was the last to officially support older targets.

I guess, it's one of those funny things where you get a different answer
depending on who you ask. It's just annoying me that my replacement
compatibility spreadsheet has question marks all over the place.

Does anyone have a clue what PSDK was the last Microsoft officially
recommended for VC++2003? That would fill a hole in the spreadsheet and shut
me up.

--
Charles E Hardwidge

Sep 20 '08 #3
David Wilkinson wrote:
3. The last version of VC to officially support Windows 95 was VC6.
I don't think that's right. It was possible to target Win95 up until VC2005 when the CRT introduced a dependency on IsDebuggerPrese nt, which only exists from Win98.
The latest PSDK usable with VC6 was February 2003.
Yes, the XP/SP2 SDK libs were compiled with /GS (buffer security check) making them incompatible with VC6.

--
Jim Barry, Microsoft MVP
Sep 22 '08 #4
Charles E Hardwidge wrote:
Does anyone have a clue what PSDK was the last Microsoft officially
recommended for VC++2003? That would fill a hole in the spreadsheet
and shut me up.
As David said, there is no such limitation. I guess you could say the last PSDK that works with VC2003 is the Windows Server 2003 SP1 Platform SDK, because that was the last to be called "Platform SDK". Its name has changed to Windows SDK (for Vista) - but it should still work with VC2003.

--
Jim Barry, Microsoft MVP
Sep 22 '08 #5
Jim Barry wrote:
David Wilkinson wrote:
>3. The last version of VC to officially support Windows 95 was VC6.

I don't think that's right. It was possible to target Win95 up until VC2005 when the CRT introduced
a dependency on IsDebuggerPrese nt, which only exists from Win98.

Jim:

It seems that you are right. There were problems with Windows 95 targets on
VS2002, but these were fixed in VS2003. See, for example:

<http://groups.google.c om/group/microsoft.publi c.dotnet.langua ges.vc/browse_thread/thread/8d796d13e098d33 6/fee4f8e8b4a25e0 4>

However, I think that, in general, the withdrawing of support for earlier OS's
in successive Visual Studio releases is a major impediment to upgrading. It is
certainly one of the excuses I used for sticking with VC6 for a long time.

If the PSDK can be backward compatible (with appropriate WINVER etc.) why cannot
Visual Studio be likewise?

--
David Wilkinson
Visual C++ MVP
Sep 22 '08 #6
David Wilkinson wrote:
However, I think that, in general, the withdrawing of support for
earlier OS's in successive Visual Studio releases is a major
impediment to upgrading. It is certainly one of the excuses I used
for sticking with VC6 for a long time.

If the PSDK can be backward compatible (with appropriate WINVER etc.)
why cannot Visual Studio be likewise?
I agree with the sentiment, though I cannot see any reason to target Windows 95 these days. In fact I would personally find it very hard to justify supporting Windows 98/Me/NT4 either.

It does seem a little odd that apparently the only thing stopping VS2005-compiled images running on Win95 is the missing IsDebuggerPrese nt export in kernel32.dll. There may be other technical reasons why Win95 is not supported, of course, but I dare say the actual reason is non-technical (think testing).

--
Jim Barry, Microsoft MVP
Sep 22 '08 #7
"Jim Barry" <ji*@mvps.orgwr ote in message
news:ej******** ******@TK2MSFTN GP04.phx.gbl...
David Wilkinson wrote:
>However, I think that, in general, the withdrawing of support for
earlier OS's in successive Visual Studio releases is a major
impediment to upgrading. It is certainly one of the excuses I used
for sticking with VC6 for a long time.

If the PSDK can be backward compatible (with appropriate WINVER etc.)
why cannot Visual Studio be likewise?

I agree with the sentiment, though I cannot see any reason to target
Windows 95 these days. In fact I would personally find it very hard to
justify supporting Windows 98/Me/NT4 either.

It does seem a little odd that apparently the only thing stopping
VS2005-compiled images running on Win95 is the missing IsDebuggerPrese nt
export in kernel32.dll. There may be other technical reasons why Win95 is
not supported, of course, but I dare say the actual reason is
non-technical (think testing).
As you comment, there's some issues with VC2005 but it starts getting really
hairy with VC2008. I found one blog topic someone had written up on the
issues and it gets really involved. I don't have a link to that but some of
you folks may be interested in looking at legacy extender.

http://www.legacyextender.com/

--
Charles E Hardwidge

Sep 23 '08 #8
"Jim Barry" <ji*@mvps.orgwr ote in message
news:ON******** ******@TK2MSFTN GP04.phx.gbl...
Charles E Hardwidge wrote:
>Does anyone have a clue what PSDK was the last Microsoft officially
recommended for VC++2003? That would fill a hole in the spreadsheet
and shut me up.

As David said, there is no such limitation. I guess you could say the last
PSDK that works with VC2003 is the Windows Server 2003 SP1 Platform SDK,
because that was the last to be called "Platform SDK". Its name has
changed to Windows SDK (for Vista) - but it should still work with VC2003.
If I read things properly, the Windows Server 2003 R2 (Mar 2006) is the last
one tested against VC2003. The Windows SDK (Feb 2007) is the last for
VC2005, and Windows SDK (Feb 2008) is the latest for VC2005 SP1.

The last Windows 2000 SP4 SDK was Windows Server R2. I think, 98/NT was R2
as well but am not sure. I did have it documented but as I said at the top,
I lost that when I had an archive accident.

--
Charles E Hardwidge

Sep 23 '08 #9
Charles E Hardwidge wrote:
If I read things properly, the Windows Server 2003 R2 (Mar 2006) is
the last one tested against VC2003.
Oops, yes - R2 is what I meant, not SP1 :-)
The last Windows 2000 SP4 SDK was Windows Server R2. I think, 98/NT
was R2 as well but am not sure.
Not quite sure what you mean by that. In general you can go back as far as you want by defining WINVER etc to the appropriate value.

--
Jim Barry, Microsoft MVP
Sep 23 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
5241
by: Mike | last post by:
Hello, I have a few rather urgent questions that I hope someone can help with (I need to figure this out prior to a meeting tomorrow.) First, a bit of background: The company I work for is developing a web-based application, one part of which involves allowing the user the ability to page through transaction "history" information. The _summary_ history table will have the following fields: ServiceName, Date, User-Ref1, User-Ref2,...
1
2092
by: Sai Kit Tong | last post by:
I have to interface managed application with my legacy dll. I have employed the wrapper approach but I have to deal with the asynchronous callback from the legacy dll, which likely goes through a thread other than the initial calling thread. I got the idea from MSDN and other responses from this group by using the delegate. However, for garabage collection issue, I need to pin the delegate. Since my callback is asynchronous, I have been...
1
3539
by: Mark Fancy | last post by:
I have a project that I'm trying to get to compile. I need to have the /Tc:wchar_t compile switch in order to use some libraries. I have included the following header files: #include <mapix.h> #include <mapiutil.h> #include <imessage.h> #include <mapitags.h> When I try to compile my project I get the following error:
23
8185
by: Steven T. Hatton | last post by:
This is one of the first obstacles I encountered when getting started with C++. I found that everybody had their own idea of what a string is. There was std::string, QString, xercesc::XMLString, etc. There are also char, wchar_t, QChar, XMLCh, etc., for character representation. Coming from Java where a String is a String is a String, that was quite a shock. Well, I'm back to looking at this, and it still isn't pretty. I've found...
16
5202
by: PyDenis | last post by:
Today, I found strange error while using py2exe: 1. I wrote simple program and save as 1.py: import win32ui import win32con win32ui.MessageBox('Test messageBox.' , 'Test', win32con.MB_OK | win32con.MB_TOPMOST ) 2. I create 1_setup.py file for py2exe:
11
3040
by: toton | last post by:
Hi, I have little confusion about static memory allocation & dynamic allocation for a cluss member. I have class like class Bar{ public: explicit Bar(){ cout<<"bar default"<<endl; }
0
6734
by: Vijay | last post by:
Prep Courses for International Certifications, CSTE & CSQA & ISEB & ISTQB &Business Analyst & SOA Certifications in HYDERABAD. After receiving overwhelming response to our last 50+ batches, SPECTRAMIND SOLUTIONS now announces a new batch of Prep Courses for CSQA & CSTE& ISEB & ISTQB & Business Analyst & SOA so as to prepare you thoroughly for the most prestigious certification exams conducted by International organizations. We...
10
2107
by: Andrew Wan | last post by:
I have been having a nightmare with ASP/ASP.NET & IIS6. We use Msxml2.DOMDocument.4.0 object to create a XML object in ASP. The Msxml2.DOMDocument.4.0 is from the Windows Platform SDK Feb 2003 (the last version compatible with VC6). Then we use TranslateXSLT(XMLDocument.transformNode) passing in a xsl file path. Our pages work perfectly fine under IIS5 & IIS6 onsite. However strange things happening at our clients IIS6: -...
2
1059
by: Charles E Hardwidge | last post by:
Feel a bit dumb for asking this. Could someone confirm whether VC2003 was a supported platform for deploying executables to Win95 or Win98. The last MSDN was Oct 2003. What's the last PSDK for VC2003 and Win95? http://msdn2.microsoft.com/en-us/vstudio/aa700897.aspx I'm hovering over whether I should stick with VC6 for Win9x and NT4 legacy development, or crank it up to VC2003. The codebase is portable, the main
0
8341
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8754
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8542
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8630
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7362
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6181
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5650
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4343
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1740
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.