Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6195937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:33:26+00:00 2026-05-24T03:33:26+00:00

I have built a program in Microsoft Visual Studio 2005 and it works fine.

  • 0

I have built a program in Microsoft Visual Studio 2005 and it works fine.

The problem I am having is the the machine it needs to be used on is running windows 98. As far as I can tell I need to install the re-distributable for vc++. Can I install the re-distributable on windows 98 or is there a way to make it work on windows 98?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:33:27+00:00Added an answer on May 24, 2026 at 3:33 am

    Yes, apps compiled with VS 2005 work perfectly fine on Windows 98 and Me. I’ve run several of them myself, and keep VS 2005 around and installed for precisely this purpose. Version 2005 of the CRT redistributable is supported as far back as Windows 98.

    The trick is that you must compile the application for the multi-byte character set (MBCS). It will not work when compiled as Unicode, which is the default project setting. Windows 9x platforms do not support Unicode without some extra help. You should be able to change the project settings and be fine, but if you’ve written your code to assume Unicode, then you’ll have a problem.

    This is why you need to use generic character types and functions defined in tchar.h, rather than their wide character equivalents that are preferred for Unicode builds. Always define strings using the TCHAR type (or LPTSTR or LPCTSTR types), which is conditionally defined to wchar_t or char, as appropriate. Use string manipulation functions that begin with _tcs..., rather than the ones specific for wide or narrow characters. Make sure that when you call functions, you always call the generic typedef’ed versions, rather than the ANSI- or wide-specific ones that end with an A or a W suffix.

    It may be a lot of work to go back and fix this if you haven’t done it from the start. If that’s the case, you might look into the Microsoft Layer for Unicode on Windows 95/98/ME Systems, which provides an abstraction layer that allows you to call Unicode functions on the legacy Windows 9x operating systems where they are not natively supported.

    Beyond Unicode/MBCS, the only thing to watch out for is that you’re not calling any functions that didn’t exist in the Win32 APIs way back in the Windows 98 days. You can’t trust what the online MSDN documentation tells you for the “minimum supported client version” anymore, because Microsoft is no longer supporting Windows 98. All of the SDK docs say that the minimum supported version is Windows 2000 now, and you know that’s not correct. The entire API was not introduced as late as W2K. In order to get accurate information, you’ll need to obtain an old version of the SDK documentation; what came with your installation of VS 2005 should be fine. The information there goes back at least as far as Win 98, if not 95 (I don’t remember exactly).

    For instances where you want to call functions that didn’t exist back in Windows 98 when you’re running on newer systems where they are available, you’ll need to take extra care to call them dynamically, rather than adding them to your application’s DLL import table (what the linker generally does for you automatically). That means defining function pointers yourself, and using the LoadLibrary and GetProcAddress functions to call them. It’s not fun, but it does work.

    Alternatively, you can configure the linker to “delay load” the libraries (check your project’s properties). This is much more convenient, but obviously you’ll need to ensure that you only call the functions that are available on your target operating system, otherwise the application will crash.

    Either way, the GetVersionEx function will tell you everything that you need to know about the current host operating system so that your code can take different paths (calling newer functions if available, or falling back to older ones if not) depending on the environment. This allows you to support new functionality on new systems, while still retaining whatever degree of support for legacy operating systems is appropriate. You’ll find a lot of if statements in the code base when this is done right. 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WinForms app built using Visual Studio 2005, including the crystal reports
I have built an application that uses SQL Express 2005 and I want to
I have built a windows service application in VB.net 2008, and used the Setup
I'm migrating a solution from visual studio 2005 to visual studio 2008. When I
I have built an MSI that I would like to deploy, and update frequently.
I have built a simple C#.Net app on a M/C with only .Net FX
I have built a web page which contains a Crystal Report built using the
I have built an application in C# that I would like to be optimized
I have built a number of asp.net servercontrols into a class library, & I
I have built a .dll under WinXP that claims it can't find DWMAPI.DLL when

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.