CONTROL "",IDC_SLIDER,"msctls_trackbar32",TBS_AUTOTICKS | TBS_BOTH
| TBS_NOTICKS | TBS_NOTIFYBEFOREMOVE | WS_DISABLED | WS_GROUP |
WS_TABSTOP,26,288,351,15
Joseph M. Newcomer [MVP]
email: newc...@flounder.com
Web: http://www.flounder.com
MVP Tips: http://www.flounder.com/mvp_tips.htm
#ifndef _WIN32_WINNT // Specifies that the minimum required
platform is Windows Vista.
#define _WIN32_WINNT 0x0600 // Change this to the appropriate value to
target other versions of Windows.
#endif
#ifndef _WIN32_WINDOWS // Specifies that the minimum required
platform is Windows 98.
#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to
target Windows Me or later.
#endif
#ifndef _WIN32_IE // Specifies that the minimum
required platform is Internet Explorer 7.0.
#define _WIN32_IE 0x0700 // Change this to the appropriate value to
target other versions of IE.
#endif
in CommCtrl.h
#if (_WIN32_IE >= 0x0600)
#define TBS_NOTIFYBEFOREMOVE 0x0800 // Trackbar should notify parent
before repositioning the slider due to user action (enables snapping)
#endif
"Kai" <K...@discussions.microsoft.com> wrote in message
news:DC252023-D176-4C77...@microsoft.com...
Installed Edition: Standard
Microsoft Visual C++ 2008 91851-136-6438725-60651
Microsoft Visual C++ 2008
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB944899)
KB944899
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/944899.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB945282)
KB945282
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/945282.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB946040)
KB946040
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/946040.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB946308)
KB946308
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/946308.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB946344)
KB946344
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/946344.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB946581)
KB946581
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/946581.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB947173)
KB947173
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/947173.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB947540)
KB947540
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/947540.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB947789)
KB947789
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/947789.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB948127)
KB948127
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/948127.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB952241)
KB952241
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/952241.
Hotfix for Microsoft Visual Studio 2008 Standard Edition - ENU (KB953256)
KB953256
This hotfix is for Microsoft Visual Studio 2008 Standard Edition - ENU.
If you later install a more recent service pack, this hotfix will be
uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/953256.
I don't care how many #defines you have or what they say if you can't say where they are
found. Why is it so difficult to supply necessary information?
joe
I followed the include chain and if you had included these definitions in your resource
build you should not get the error. But since you didn't say anything about where they
were, it is impossible to tell if you included them in the resource build!
joe
"Joseph M. Newcomer" <newc...@flounder.com> wrote in message
news:ill30515l42t8nsv0...@4ax.com...
Download details: Visual Studio 2008 Service Pack 1:
http://www.microsoft.com/downloads/details.aspx?familyid=FBEE1648-7106-44A7-9649-6D9F6D58056E&displaylang=en
Scot
"Kai" <K...@discussions.microsoft.com> wrote in message
news:F7D4C2FD-C234-49E5...@microsoft.com...
As Joe asked, what file holds those #define statements you shared. Wizard-generated code puts them
in targetver.h, but you may have something different. Most importantly, is the header file also
#included in your RC?
"Kai" <K...@discussions.microsoft.com> wrote in message
news:206FDD60-AC06-4474...@microsoft.com...
"Scot T Brennecke" wrote:
> Then your program differs from what is done for you by default. We should be looking now at what
> you've changed. Did you start with an older project and upgrade it to 2008, or did you create this
> one in 2008 from the beginning?
From the begining
If created in 2008, did you use a wizard, or did you write the code
> yourself, or copy it from elsewhere?
sometimes do by myself
> As Joe asked, what file holds those #define statements you shared. Wizard-generated code puts them
> in targetver.h, but you may have something different. Most importantly, is the header file also
> #included in your RC?
Yes
Scot
"Kai" <K...@discussions.microsoft.com> wrote in message
news:F8B7AA32-2B1E-4473...@microsoft.com...