Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / MFC
Article

XListCtrl - A custom-draw list control with subitem formatting

Rate me:
Please Sign up or sign in to vote.
4.92/5 (261 votes)
6 Sep 2006CPOL9 min read 3.5M   34.2K   665   932
A custom-draw list control with support for subitem colors, bold font, progress bars, and checkboxes.

Introduction

The use of list controls is becoming very common now, and is used by many apps with the need for some sort of list display. I have used list controls in many projects, and naturally have developed my own classes to display different colors, fonts, and progress bars in list control.

Recently I needed a list control with a checkbox like Hotmail. With a list like Hotmail you have checkbox in column header, and checkboxes in each subitem in that column. To set a check in every subitem, you check the checkbox in the column header. Similarly, if you uncheck one of the subitems, then the checkbox in the column header also gets unchecked.

What's New in 1.4

  • Subitem editing - thanks to Oleg Matcovsky for providing code that I based this implementation on.
  • New combo box implementation - thanks to Mathias Tunared's excellent AdvComboBox.
  • Skip disabled items - fixed this bug, that allowed disabled item to be selected.
  • Set header alignment, text color, and divider lines.
  • Set cell padding.
  • Reduced flickering.
  • Header checkboxes do not require resource bitmap - the file checkboxes.bmp, is still included in download, but it is no longer really necessary.
  • Enable ellipsis for text display.
  • Get modified flag for subitems.
  • More demo build configurations - 1.4 includes both DLL and static link build configurations, with 3 types of demo apps — dialogs, MDI, and property sheet — and 12 versions of the XListCtrl libraries, including both Unicode and ANSI.
  • DLL and static library versions - beginning with this version, all XListCtrl code has been organized as libraries that you link with. Table below shows library versions available.
  • Many bug fixes!

XListCtrl Features

The new CXListCtrl list control class supports these features:

  • Text and background colors may be specified for each subitem.
  • One or more subitem text may be displayed as normal or bold font.
  • One or more subitems may be switched from displaying text to displaying a progress bar, and then back again to text.
  • Custom text may be specified for progress bar, instead of just displaying usual 10%, 20%, etc. Also, there is option to display no text for progress bar, just the bar itself.
  • One or more subitems may contain checkbox, with or without text.
  • One or more subitems may contain combobox control.
  • One or more subitems may contain edit control.
  • A row may be disabled, so that checkboxes are unclickable.
  • The header is displayed flat like Outlook.

XListCtrl Demo

The demo project provides a sample app that shows what the various features look like. Press the Start button and the list control is filled with data.

screenshot

  1. First column is specified with checkboxes
  2. The second column shows subitem with bold text
  3. The second column shows subitem with different background color
  4. The third column contains progress bar in row 2
  5. The fourth column also contains checkboxes
  6. The fifth column shows subitem with different background color
  7. The sixth column shows subitem with different text and background colors
  8. The second column shows combobox
  9. The sixth row is disabled
  10. The fifth column shows edit control

How To Use

To integrate XListCtrl into your own app, you first need to decide if you want to include XListCtrl code into your own exe (using XListCtrl static link library), or if you want to link to XListCtrl DLL. Using DLL version of XListCtrl makes sense if you plan to use XListCtrl in several apps. The XListCtrl DLL is an MFC extension DLL, so your app must also be MFC-based.

If you plan to use and distribute DLL version of XListCtrl, do not put DLL in Windows directory. This could cause conflicts with other apps that use XListCtrl, and some future version of XListCtrl may not be compatible with the one that you distribute.

To use static XListCtrl library, define symbol XLISTCTRLLIB_STATIC before including header file XListCtrl.h. Otherwise, DLL version of XListCtrl will be linked to your app. Regardless of which version you link with, you must change your app's build environment as follows:

  1. Go to Project | Settings | C/C++ | Preprocessor and add the XListCtrl source directory to Additional include directories. Also, on the left side of the Settings dialog, choose All Configurations. Click OK to save this setting.

    screenshot

  2. Go to Project | Settings | Link | Input and add the XListCtrl library directory to Additional library path. Again, on the left side of the Settings dialog, choose All Configurations. Click OK to save this setting.

    screenshot

Automatic Library Selection

Using symbols _AFXDLL, XLISTCTRLLIB_STATIC, _DEBUG, and _UNICODE, the following code in XListCtrl.h automatically determines which XListCtrl library to link to your app:

#ifndef XLISTCTRLLIB_NOAUTOLIB
    #if defined _AFXDLL && !defined XLISTCTRLLIB_STATIC
        // MFC shared DLL with XListCtrl shared DLL
        #ifdef _UNICODE    
            #ifdef _DEBUG
                #pragma comment(lib,"XListCtrlDDDU.lib")
                #pragma message("Automatically linking with XListCtrlDDDU.lib")
            #else
                #pragma comment(lib,"XListCtrlDDRU.lib")
                #pragma message("Automatically linking with XListCtrlDDRU.lib")
            #endif
        #else
            #ifdef _DEBUG
                #pragma comment(lib,"XListCtrlDDDA.lib")
                #pragma message("Automatically linking with XListCtrlDDDA.lib")
            #else
                #pragma comment(lib,"XListCtrlDDRA.lib")
                #pragma message("Automatically linking with XListCtrlDDRA.lib")
            #endif
        #endif
    #elif defined _AFXDLL && defined XLISTCTRLLIB_STATIC
        // MFC shared DLL with XListCtrl static lib
        #ifdef _UNICODE
            #ifdef _DEBUG
                #pragma comment(lib,"XListCtrlDSDU.lib")
                #pragma message("Automatically linking with XListCtrlDSDU.lib")
            #else
                #pragma comment(lib,"XListCtrlDSRU.lib")
                #pragma message("Automatically linking with XListCtrlDSRU.lib")
            #endif
        #else
            #ifdef _DEBUG
                #pragma comment(lib,"XListCtrlDSDA.lib")
                #pragma message("Automatically linking with XListCtrlDSDA.lib")
            #else
                #pragma comment(lib,"XListCtrlDSRA.lib")
                #pragma message("Automatically linking with XListCtrlDSRA.lib")
            #endif
        #endif
    #elif !defined _AFXDLL && defined XLISTCTRLLIB_STATIC
        // MFC static lib with XListCtrl static lib
        #ifdef _UNICODE
            #ifdef _DEBUG
                #pragma comment(lib,"XListCtrlSSDU.lib")
                #pragma message("Automatically linking with XListCtrlSSDU.lib")
            #else
                #pragma comment(lib,"XListCtrlSSRU.lib")
                #pragma message("Automatically linking with XListCtrlSSRU.lib")
            #endif
        #else
            #ifdef _DEBUG
                #pragma comment(lib,"XListCtrlSSDA.lib")
                #pragma message("Automatically linking with XListCtrlSSDA.lib")
            #else
                #pragma comment(lib,"XListCtrlSSRA.lib")
                #pragma message("Automatically linking with XListCtrlSSRA.lib")
            #endif
        #endif
    #else
        #pragma message(" ")
        #pragma message("-------------------------------------" + 
                        "-------------------------------------")
        #pragma message(" The SD build configuration (MFC static," + 
                        " XListCtrl DLL) is not available. ")
        #pragma message("-------------------------------------" + 
                        "-------------------------------------")
        #pragma message(" ")
        #error This build configuration is not available.
    #endif
#endif

XListCtrl Library Naming Conventions

XListCtrl Library Naming Conventions
Library NameMFCXListCtrlBuildCharset
DLLStaticDLLStaticDebugReleaseANSIUNICODE
XListCtrlDDDA

Image 4

 

Image 5

 

Image 6

 

Image 7

 
XListCtrlDDDU

Image 8

 

Image 9

 

Image 10

  

Image 11

XListCtrlDDRA

Image 12

 

Image 13

  

Image 14

Image 15

 
XListCtrlDDRU

Image 16

 

Image 17

  

Image 18

 

Image 19

XListCtrlDSDA

Image 20

  

Image 21

Image 22

 

Image 23

 
XListCtrlDSDU

Image 24

  

Image 25

Image 26

  

Image 27

XListCtrlDSRA

Image 28

  

Image 29

 

Image 30

Image 31

 
XListCtrlDSRU

Image 32

  

Image 33

 

Image 34

 

Image 35

XListCtrlSSDA 

Image 36

 

Image 37

Image 38

 

Image 39

 
XListCtrlSSDU 

Image 40

 

Image 41

Image 42

  

Image 43

XListCtrlSSRA 

Image 44

 

Image 45

 

Image 46

Image 47

 
XListCtrlSSRU 

Image 48

 

Image 49

 

Image 50

 

Image 51

XListCtrlSDxx——— not built ———

Building XListCtrl Libraries

To build the XListCtrl libraries, go to Build | Batch Build and select the libraries you wish to build:

screenshot

Then click on Rebuild All and the libraries will be built. By default, the .lib and .dll files are copied to the bin directory.

Tips and Tricks

  • Rebuilding dialog demos - If you rebuild any of the dialog demos, be sure to use Rebuild All command. Reason: the dialog demos all share the same output file directories, and you will get linker errors if you compile only one module, and try to link with modules that were compiled with different set of build options.
  • Eliminate flickering - When updating or filling the list control, there is sometimes flickering of list control and/or other controls on dialog. To eliminate this flickering, you may try one of the following methods:
    1. Use CListCtrl::LockWindowUpdate()/CListCtrl::UnlockWindowUpdate() to bracket the updating code.
    2. Use CListCtrl::SetRedraw(FALSE)/CListCtrl::SetRedraw(TRUE) to bracket the updating code.

    After using one of these methods, you probably should call list.UpdateWindow() to make sure control is updated. If one method doesn't completely eliminate flickering in your application, try other method to determine which works best.

  • Using tooltips - You must first call CListCtrl::EnableToolTips(TRUE).
  • Using combobox and edit controls - You must set LVS_EX_FULLROWSELECT style.

Revision History

Version 1.4 Changes

  • Subitem editing
  • New combo box implementation
  • Skip disabled items
  • APIs to set header alignment, text color, and divider lines
  • Set cell padding
  • Reduced flickering
  • Header checkboxes do not require resource bitmap
  • Enable ellipsis for text display
  • API to get modified flag for subitems
  • More demo build configurations
  • DLL and static library versions
  • Many bug fixes!

Version 1.3 Changes

This version includes many bug fixes that have been accumulating. My thanks for all who have reported bugs. Please try this new version and let me know if you find any bugs, or have suggestions for future enhancements.

  • Added hot-tracking to combo's listbox.
  • Added compile-time option to remove support for comboboxes. (This reduce exe size by about 8 Kb). To remove combobox support, put this line in stdafx.h:
    #define DO_NOT_INCLUDE_XCOMBOLIST

    If you insert this define, you do not need to include XComboList.cpp or XComboList.h in your project.

  • Changed CXComboList::SetActive to accept scroll bar width as input parameter.
  • Fixed bug that caused string to not be displayed when clicking outside item string (reported by James Moore). This also caused problems in property pages and other places.
  • Fixed bug that caused some strings not to be selected, when drag-selecting several items quickly (reported by James Moore).
  • Fixed several problems with displaying images in header and list control (reported by Scot Brennecke).
  • Changed message map macros for NM_CLICK and LVN_COLUMNCLICK to use ON_NOTIFY_REFLECT_EX(), to allow parent to handle message also (suggested by bkupcins).
  • Fixed problem in XHeaderCtrl caused when XP theming is enabled. The GetHeaderCheckedState()/SetHeaderCheckedState() functions now use 0 = no check box, 1 = unchecked check box, 2 = checked check box. Note: The checkboxes.bmp file has also been updated, and must be replaced in all project that use 1.3 XListCtrl. The new defines XHEADERCTRL_NO_IMAGE, XHEADERCTRL_UNCHECKED_IMAGE, and XHEADERCTRL_CHECKED_IMAGE should be used when setting the image in the header control (see XListCtrlTestDlg.cpp for example).
  • Replaced calls to GetSysColor() with class variables that are set in ctor. Class variables are reloaded in response to WM_SYSCOLORCHANGE message (suggested by KarstenK).
  • Added ASSERT if combo boxes are used without LVS_EX_FULLROWSELECT style.
  • Added two registered messages that XListCtrl will send to its parent when combo box selection is changed (WM_XLISTCTRL_COMBO_SELECTION) and when check box is clicked (WM_XLISTCTRL_CHECKBOX_CLICKED). The sample app shows how to handle these new messages.
  • Added support for tooltips. To enable tooltips, you must call CListCtrl::EnableToolTips(TRUE). If you #define constant NO_XLISTCTRL_TOOL_TIPS, the tooltip support will not be included. New API's for tooltips:
    BOOL SetItemToolTipText(int nItem, int nSubItem, LPCTSTR lpszToolTipText);
    CString GetItemToolTipText(int nItem, int nSubItem);
    void DeleteAllToolTips();

Version 1.2.1 Changes

  • Added build configurations for Unicode.
  • Minor code modifications to support Unicode strings.

Version 1.2 Changes

  • Comboboxes!!! Now you can specify drop-list combobox for one or more subitem.
  • Combobox will be drawn when item is highlighted. Demo now has item hot-tracking.
  • Incorporated David Patrick's suggestion on how to subclass header control if CXListCtrl is created dynamically via Create() instead of via dialog template. See XListCtrlTestDlg.cpp for details on how to convert the demo project to create CXListCtrl dynamically.
  • Tweaked drawing of subitems to make cleaner visually.
  • Added API's for GetCurSel and SetCurSel to make coding easier.

Acknowledgments

The CXListCtrl code is based on:

The city population figures are taken from Th. Brinkhoff: The Principal Agglomerations of the World.

Usage

This software is released into the public domain. You are free to use it in any way you like, except that you may not sell this source code. If you modify it or extend it, please to consider posting new code here for everyone to share. This software is provided "as is" with no expressed or implied warranty. I accept no liability for any damage or loss of business that this software may cause.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Hans Dietrich Software
United States United States
I attended St. Michael's College of the University of Toronto, with the intention of becoming a priest. A friend in the University's Computer Science Department got me interested in programming, and I have been hooked ever since.

Recently, I have moved to Los Angeles where I am doing consulting and development work.

For consulting and custom software development, please see www.hdsoft.org.






Comments and Discussions

 
GeneralMy vote of 5 Pin
Jackem_Govpan4-Oct-17 0:47
Jackem_Govpan4-Oct-17 0:47 
Questionmoving OnLButtonDown code to OnClick will better Pin
may20th21-Jun-17 2:35
may20th21-Jun-17 2:35 
Questiongot error when i tried to integrate XListCtrlSSDU.lib into my app Pin
yixuan1782-Nov-14 4:55
yixuan1782-Nov-14 4:55 
Questionmy mfc app is used "Use MFC in a Static Library", does it mean only to use XListCtrlSS.lib Pin
yixuan1782-Nov-14 4:41
yixuan1782-Nov-14 4:41 
Questionbuild failed under vs2013 Pin
yixuan1782-Nov-14 1:56
yixuan1782-Nov-14 1:56 
AnswerRe: build failed under vs2013 Pin
yixuan1782-Nov-14 2:38
yixuan1782-Nov-14 2:38 
Except above message, there has many more error message for me? I have no idea to fix it. Anyone have solved it? Thanks!
CSS
Error   91  error CVT1100: duplicate resource.  type:MANIFEST, name:1, language:0x0409  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\CVTRES   DialogDD
Error   119 error CVT1100: duplicate resource.  type:MANIFEST, name:1, language:0x0409  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\CVTRES   DialogDS
Error   148 error CVT1100: duplicate resource.  type:MANIFEST, name:1, language:0x0409  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\CVTRES   DialogSS
Error   92  error LNK1123: failure during conversion to COFF: file invalid or corrupt   C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\LINK DialogDD
Error   120 error LNK1123: failure during conversion to COFF: file invalid or corrupt   C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\LINK DialogDS
Error   149 error LNK1123: failure during conversion to COFF: file invalid or corrupt   C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\LINK DialogSS
Error   147 error LNK2005: "public: virtual __thiscall CMemDC::~CMemDC(void)" (??1CMemDC@@UAE@XZ) already defined in XListCtrlSSDU.lib(XHeaderCtrl.obj) C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\uafxcwd.lib(afxglobals.obj)  DialogSS
Error   22  error MSB3073: The command "mkdir ..\bin 2> nul
copy .\Debug_Unicode\XListCtrlDD.dll ..\bin 1> nul
copy .\Debug_Unicode\XListCtrlDD.lib ..\bin 1> nul
:VCEnd" exited with code 1. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    132 5   XListCtrlDD
Error   43  error MSB3073: The command "mkdir ..\bin 2> nul
copy .\Debug_Unicode\XListCtrlDS.lib ..\bin 1> nul
:VCEnd" exited with code 1. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    132 5   XListCtrlDS
Error   64  error MSB3073: The command "mkdir ..\bin 2> nul
copy .\Debug_Unicode\XListCtrlSS.lib ..\bin 1> nul
:VCEnd" exited with code 1. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    132 5   XListCtrlSS
Error   150 error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=286820 for more information.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 369 5   MDI
Error   151 error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=286820 for more information.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 369 5   PropertySheet
    152 IntelliSense: cannot open source file "stdafx.h"    c:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\XListCtrl\AdvComboBox.cpp   22  1   XListCtrlDD
Warning 212 The 'AppContainer' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    617 9   Miscellaneous Files
Warning 227 The 'AppContainer' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    741 9   Miscellaneous Files
Warning 243 The 'AppContainer' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    876 9   Miscellaneous Files
Warning 167 The 'BuildingInIDE' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    243 9   Miscellaneous Files
Warning 180 The 'BuildingInIDE' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    342 9   Miscellaneous Files
Warning 194 The 'BuildingInIDE' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    459 9   Miscellaneous Files
Warning 211 The 'BuildingInIDE' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    608 9   Miscellaneous Files
Warning 226 The 'BuildingInIDE' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    732 9   Miscellaneous Files
Warning 242 The 'BuildingInIDE' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    867 9   Miscellaneous Files
Warning 168 The 'CompileAsWinRT' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    257 9   Miscellaneous Files
Warning 181 The 'CompileAsWinRT' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    356 9   Miscellaneous Files
Warning 195 The 'CompileAsWinRT' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    473 9   Miscellaneous Files
Warning 178 The 'DeleteOutputOnExecute' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    333 9   Miscellaneous Files
Warning 191 The 'DeleteOutputOnExecute' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    432 9   Miscellaneous Files
Warning 205 The 'DeleteOutputOnExecute' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    549 9   Miscellaneous Files
Warning 169 The 'EnableParallelCodeGeneration' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    264 9   Miscellaneous Files
Warning 182 The 'EnableParallelCodeGeneration' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    363 9   Miscellaneous Files
Warning 196 The 'EnableParallelCodeGeneration' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    480 9   Miscellaneous Files
Warning 213 The 'GenerateWindowsMetadata' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    642 9   Miscellaneous Files
Warning 228 The 'GenerateWindowsMetadata' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    766 9   Miscellaneous Files
Warning 244 The 'GenerateWindowsMetadata' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    901 9   Miscellaneous Files
Warning 215 The 'ManifestEmbed' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    659 9   Miscellaneous Files
Warning 230 The 'ManifestEmbed' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    783 9   Miscellaneous Files
Warning 246 The 'ManifestEmbed' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    918 9   Miscellaneous Files
Warning 216 The 'ManifestInput' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    660 9   Miscellaneous Files
Warning 231 The 'ManifestInput' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    784 9   Miscellaneous Files
Warning 247 The 'ManifestInput' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    919 9   Miscellaneous Files
Warning 170 The 'PREfastAdditionalOptions' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    291 9   Miscellaneous Files
Warning 183 The 'PREfastAdditionalOptions' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    390 9   Miscellaneous Files
Warning 197 The 'PREfastAdditionalOptions' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    507 9   Miscellaneous Files
Warning 171 The 'PREfastAdditionalPlugins' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    292 9   Miscellaneous Files
Warning 184 The 'PREfastAdditionalPlugins' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    391 9   Miscellaneous Files
Warning 198 The 'PREfastAdditionalPlugins' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    508 9   Miscellaneous Files
Warning 172 The 'PREfastLog' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    293 9   Miscellaneous Files
Warning 185 The 'PREfastLog' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    392 9   Miscellaneous Files
Warning 199 The 'PREfastLog' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    509 9   Miscellaneous Files
Warning 173 The 'SDLCheck' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    302 9   Miscellaneous Files
Warning 186 The 'SDLCheck' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    401 9   Miscellaneous Files
Warning 200 The 'SDLCheck' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    518 9   Miscellaneous Files
Warning 217 The 'SignHash' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    680 9   Miscellaneous Files
Warning 232 The 'SignHash' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    804 9   Miscellaneous Files
Warning 248 The 'SignHash' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    939 9   Miscellaneous Files
Warning 175 The 'ToolArchitecture' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    329 9   Miscellaneous Files
Warning 188 The 'ToolArchitecture' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    428 9   Miscellaneous Files
Warning 202 The 'ToolArchitecture' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    545 9   Miscellaneous Files
Warning 222 The 'ToolArchitecture' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    713 9   Miscellaneous Files
Warning 237 The 'ToolArchitecture' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    837 9   Miscellaneous Files
Warning 176 The 'TrackerFrameworkPath' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    330 9   Miscellaneous Files
Warning 189 The 'TrackerFrameworkPath' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    429 9   Miscellaneous Files
Warning 203 The 'TrackerFrameworkPath' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    546 9   Miscellaneous Files
Warning 223 The 'TrackerFrameworkPath' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    714 9   Miscellaneous Files
Warning 238 The 'TrackerFrameworkPath' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    838 9   Miscellaneous Files
Warning 177 The 'TrackerSdkPath' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    331 9   Miscellaneous Files
Warning 190 The 'TrackerSdkPath' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    430 9   Miscellaneous Files
Warning 204 The 'TrackerSdkPath' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    547 9   Miscellaneous Files
Warning 224 The 'TrackerSdkPath' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    715 9   Miscellaneous Files
Warning 239 The 'TrackerSdkPath' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    839 9   Miscellaneous Files
Warning 214 The 'WindowsMetadataFile' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    643 9   Miscellaneous Files
Warning 229 The 'WindowsMetadataFile' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    767 9   Miscellaneous Files
Warning 245 The 'WindowsMetadataFile' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    902 9   Miscellaneous Files
Warning 219 The 'WindowsMetadataKeyContainer' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    701 9   Miscellaneous Files
Warning 234 The 'WindowsMetadataKeyContainer' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    825 9   Miscellaneous Files
Warning 250 The 'WindowsMetadataKeyContainer' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    960 9   Miscellaneous Files
Warning 220 The 'WindowsMetadataLinkDelaySign' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    702 9   Miscellaneous Files
Warning 235 The 'WindowsMetadataLinkDelaySign' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    826 9   Miscellaneous Files
Warning 251 The 'WindowsMetadataLinkDelaySign' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    961 9   Miscellaneous Files
Warning 218 The 'WindowsMetadataLinkKeyFile' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    700 9   Miscellaneous Files
Warning 233 The 'WindowsMetadataLinkKeyFile' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    824 9   Miscellaneous Files
Warning 249 The 'WindowsMetadataLinkKeyFile' attribute is not declared. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    959 9   Miscellaneous Files
Warning 221 The 'WindowsMetadataSignHash' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    703 9   Miscellaneous Files
Warning 236 The 'WindowsMetadataSignHash' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    827 9   Miscellaneous Files
Warning 252 The 'WindowsMetadataSignHash' attribute is not declared.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    962 9   Miscellaneous Files
Warning 174 The 'WinRTNoStdLib' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    317 9   Miscellaneous Files
Warning 187 The 'WinRTNoStdLib' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    416 9   Miscellaneous Files
Warning 201 The 'WinRTNoStdLib' attribute is not declared.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    533 9   Miscellaneous Files
Warning 179 The 'YieldDuringToolExecution' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    336 9   Miscellaneous Files
Warning 192 The 'YieldDuringToolExecution' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    435 9   Miscellaneous Files
Warning 206 The 'YieldDuringToolExecution' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    552 9   Miscellaneous Files
Warning 225 The 'YieldDuringToolExecution' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    719 9   Miscellaneous Files
Warning 240 The 'YieldDuringToolExecution' attribute is not declared.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    843 9   Miscellaneous Files
Warning 164 The element 'ClCompile' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'PrecompiledHeaderOutputFile' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'PrecompiledHeader, AdditionalIncludeDirectories, AdditionalUsingDirectories, CompileAsManaged, ErrorReporting, WarningLevel, MinimalRebuild, DebugInformationFormat, PreprocessorDefinitions, Optimization, BasicRuntimeChecks, RuntimeLibrary, FunctionLevelLinking, FloatingPointModel, IntrinsicFunctions, PrecompiledHeaderFile, MultiProcessorCompilation, UseUnicodeForAssemblerListing, UndefinePreprocessorDefinitions, StringPooling, BrowseInformation, FloatingPointExceptions, CreateHotpatchableImage, RuntimeTypeInfo, OpenMPSupport, CallingConvention, DisableSpecificWarnings, ForcedIncludeFiles, ForcedUsingFiles, ShowIncludes, UseFullPaths, OmitDefaultLibName, TreatSpecificWarningsAsErrors' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    215 10  Miscellaneous Files
Warning 193 The element 'ClCompile' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'PrecompiledHeaderOutputFile' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'PrecompiledHeader, AdditionalIncludeDirectories, AdditionalUsingDirectories, CompileAsManaged, ErrorReporting, WarningLevel, MinimalRebuild, DebugInformationFormat, PreprocessorDefinitions, Optimization, BasicRuntimeChecks, RuntimeLibrary, FunctionLevelLinking, FloatingPointModel, IntrinsicFunctions, PrecompiledHeaderFile, MultiProcessorCompilation, UseUnicodeForAssemblerListing, UndefinePreprocessorDefinitions, StringPooling, BrowseInformation, FloatingPointExceptions, CreateHotpatchableImage, RuntimeTypeInfo, OpenMPSupport, CallingConvention, DisableSpecificWarnings, ForcedIncludeFiles, ForcedUsingFiles, ShowIncludes, UseFullPaths, OmitDefaultLibName, TreatSpecificWarningsAsErrors' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'.    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    445 10  Miscellaneous Files
Warning 207 The element 'ItemGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element '_EmbedManagedResourceFile' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Item, Reference, COMReference, COMFileReference, Xdcmake, Bscmake, ClCompile, ClInclude, Midl, ResourceCompile, PreLinkEvent, CustomBuildStep, Manifest, ProjectConfiguration, ProjectCapability, NativeReference, ProjectReference, Compile, EmbeddedResource, Content, Page, Resource, ApplicationDefinition, None, BaseApplicationManifest, Folder, Import, Service, WebReferences, WebReferenceUrl, FileAssociation, BootstrapperFile, PublishFile, PRIResource, AppxSystemBinary, AppxReservedFileName, AppxManifestFileNameQuery, AppxManifest, StoreAssociationFile, CodeAnalysisDependentAssemblyPaths, CodeAnalysisDictionary, CodeAnalysisImport, Link, ResourceCompile, PreBuildEvent, PostBuildEvent' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    565 8   Miscellaneous Files
Warning 157 The element 'ItemGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'AvailableItemName' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Item, Reference, COMReference, COMFileReference, Xdcmake, Bscmake, ClCompile, ClInclude, Midl, ResourceCompile, PreLinkEvent, CustomBuildStep, Manifest, ProjectConfiguration, ProjectCapability, NativeReference, ProjectReference, Compile, EmbeddedResource, Content, Page, Resource, ApplicationDefinition, None, BaseApplicationManifest, Folder, Import, Service, WebReferences, WebReferenceUrl, FileAssociation, BootstrapperFile, PublishFile, PRIResource, AppxSystemBinary, AppxReservedFileName, AppxManifestFileNameQuery, AppxManifest, StoreAssociationFile, CodeAnalysisDependentAssemblyPaths, CodeAnalysisDictionary, CodeAnalysisImport, Link, ResourceCompile, PreBuildEvent, PostBuildEvent' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    89  6   Miscellaneous Files
Warning 166 The element 'ItemGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'ClNoDependencies' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Item, Reference, COMReference, COMFileReference, Xdcmake, Bscmake, ClCompile, ClInclude, Midl, ResourceCompile, PreLinkEvent, CustomBuildStep, Manifest, ProjectConfiguration, ProjectCapability, NativeReference, ProjectReference, Compile, EmbeddedResource, Content, Page, Resource, ApplicationDefinition, None, BaseApplicationManifest, Folder, Import, Service, WebReferences, WebReferenceUrl, FileAssociation, BootstrapperFile, PublishFile, PRIResource, AppxSystemBinary, AppxReservedFileName, AppxManifestFileNameQuery, AppxManifest, StoreAssociationFile, CodeAnalysisDependentAssemblyPaths, CodeAnalysisDictionary, CodeAnalysisImport, Link, ResourceCompile, PreBuildEvent, PostBuildEvent' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    233 8   Miscellaneous Files
Warning 209 The element 'Link' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'ManifestEmbed' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'AdditionalDependencies, OutputFile, AssemblyDebug, SubSystem, ShowProgress, GenerateDebugInformation, EnableCOMDATFolding, OptimizeReferences, Version, Driver, RandomizedBaseAddress, SuppressStartupBanner, AdditionalLibraryDirectories, Profile, LinkStatus, FixedBaseAddress, DataExecutionPrevention, SwapRunFromCD, SwapRunFromNET, RegisterOutput, AllowIsolation, EnableUAC, UACExecutionLevel, UACUIAccess, PreventDllBinding, IgnoreStandardIncludePath, GenerateMapFile, IgnoreEmbeddedIDL, TypeLibraryResourceID, LinkErrorReporting, MapExports, TargetMachine, TreatLinkerWarningAsErrors, ForceFileOutput, CreateHotPatchableImage, SpecifySectionAttributes, MSDOSStubFileName, IgnoreAllDefaultLibraries, IgnoreSpecificDefaultLibraries, ModuleDefinitionFile, AddModuleNamesToAssembly, EmbedManagedResourceFile, ForceSymbolReferences, DelayLoadDLLs, AssemblyLinkResource, AdditionalManifestDependencies, StripPrivateSymbols, MapFileName, MinimumRequiredVersion, HeapReserveSize, HeapCommitSize, StackReserveSize, StackCommitSi....   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    592 10  Miscellaneous Files
Warning 210 The element 'Link' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'WindowsMetadataFile' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'AdditionalDependencies, OutputFile, AssemblyDebug, SubSystem, ShowProgress, GenerateDebugInformation, EnableCOMDATFolding, OptimizeReferences, Version, Driver, RandomizedBaseAddress, SuppressStartupBanner, AdditionalLibraryDirectories, Profile, LinkStatus, FixedBaseAddress, DataExecutionPrevention, SwapRunFromCD, SwapRunFromNET, RegisterOutput, AllowIsolation, EnableUAC, UACExecutionLevel, UACUIAccess, PreventDllBinding, IgnoreStandardIncludePath, GenerateMapFile, IgnoreEmbeddedIDL, TypeLibraryResourceID, LinkErrorReporting, MapExports, TargetMachine, TreatLinkerWarningAsErrors, ForceFileOutput, CreateHotPatchableImage, SpecifySectionAttributes, MSDOSStubFileName, IgnoreAllDefaultLibraries, IgnoreSpecificDefaultLibraries, ModuleDefinitionFile, AddModuleNamesToAssembly, EmbedManagedResourceFile, ForceSymbolReferences, DelayLoadDLLs, AssemblyLinkResource, AdditionalManifestDependencies, StripPrivateSymbols, MapFileName, MinimumRequiredVersion, HeapReserveSize, HeapCommitSize, StackReserveSize, StackCommitSi.... C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    599 10  Miscellaneous Files
Warning 158 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element '_BuildSuffix' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    116 6   Miscellaneous Files
Warning 165 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CLToolArchitecture' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule.... C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    228 8   Miscellaneous Files
Warning 162 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CustomBuildToolArchitecture' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    167 8   Miscellaneous Files
Warning 159 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CustomBuildToolBeforeTargets' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    139 6   Miscellaneous Files
Warning 160 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CustomBuildToolBeforeTargets' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    145 6   Miscellaneous Files
Warning 161 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CustomBuildToolBeforeTargets' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    153 6   Miscellaneous Files
Warning 155 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'EmbedManifestBy' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    59  6   Miscellaneous Files
Warning 156 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'EmbedManifestBy' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    65  6   Miscellaneous Files
Warning 208 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'Link_MinimalRebuildFromTracking' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....    C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    573 8   Miscellaneous Files
Warning 241 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'LinkToolArchitecture' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    855 8   Miscellaneous Files
Warning 154 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'TargetPath' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule.... C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    31  6   Miscellaneous Files
Warning 153 The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'YieldDuringToolExecution' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Property, AllowUnsafeBlocks, AppConfigForCompiler, ApplicationIcon, ApplicationRevision, ApplicationVersion, AppDesignerFolder, AspNetConfiguration, AssemblyKeyContainerName, AssemblyKeyProviderName, AssemblyName, AssemblyOriginatorKeyFile, AssemblyOriginatorKeyFileType, AssemblyOriginatorKeyMode, AssemblyType, AutoGenerateBindingRedirects, AutorunEnabled, BaseAddress, BootstrapperComponentsLocation, BootstrapperComponentsUrl, BootstrapperEnabled, CharacterSet, CheckForOverflowUnderflow, CLRSupport, UseDebugLibraries, CodePage, Configuration, ConfigurationName, ConfigurationOverrideFile, CreateDesktopShortcut, CreateWebPageOnPublish, CurrentSolutionConfigurationContents, DebugSecurityZoneURL, DebugSymbols, DebugType, DefaultClientScript, DefaultHTMLPageLayout, DefaultTargetSchema, DefineConstants, DefineDebug, DefineTrace, DelaySign, DisableLangXtns, DisallowUrlActivation, CodeAnalysisAdditionalOptions, CodeAnalysisApplyLogFileXsl, CodeAnalysisConsoleXsl, CodeAnalysisCulture, CodeAnalysisFailOnMissingRule....   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    18  6   Miscellaneous Files
Warning 163 The element 'Target' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has invalid child element 'CustomBuild' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003'. List of possible elements expected: 'Task, AL, AspNetCompiler, AssignCulture, AssignProjectConfiguration, AssignTargetPath, AxImp, CallTarget, CombinePath, ConvertToAbsolutePath, Copy, CreateCSharpManifestResourceName, CreateItem, CreateProperty, CreateVisualBasicManifestResourceName, Csc, Delete, Error, Exec, FindAppConfigFile, FindInList, FindUnderPath, FormatUrl, FormatVersion, GenerateApplicationManifest, GenerateBootstrapper, GenerateDeploymentManifest, GenerateResource, GenerateTrustInfo, GetAssemblyIdentity, GetFrameworkPath, GetFrameworkSdkPath, GetReferenceAssemblyPaths, LC, MakeDir, Message, Move, MSBuild, ReadLinesFromFile, RegisterAssembly, RemoveDir, RemoveDuplicates, RequiresFramework35SP1Assembly, ResolveAssemblyReference, ResolveComReference, ResolveKeySource, ResolveManifestFiles, ResolveNativeReference, ResolveNonMSBuildProjectOutput, SGen, SignFile, TlbImp, Touch, UnregisterAssembly, UpdateManifest, Vbc, VCBuild, Warning, WriteCodeFragment, WriteLinesToFile, XslTransformation, CodeAnalysis, CL, Link, BSCMake, CPPClean, Get....   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    170 6   Miscellaneous Files
Warning 253 The maximum number of errors or warnings has been reached.  C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets    1812    1   Miscellaneous Files
Warning 2   warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  82  1   XListCtrlDD
Warning 3   warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  88  1   XListCtrlDD
Warning 7   warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  179 1   XListCtrlDD
Warning 8   warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  185 1   XListCtrlDD
Warning 24  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  82  1   XListCtrlDS
Warning 25  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  88  1   XListCtrlDS
Warning 29  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  179 1   XListCtrlDS
Warning 30  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  185 1   XListCtrlDS
Warning 45  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  82  1   XListCtrlSS
Warning 46  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  88  1   XListCtrlSS
Warning 50  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  179 1   XListCtrlSS
Warning 51  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  185 1   XListCtrlSS
Warning 66  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  82  1   DialogDD
Warning 67  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  88  1   DialogDD
Warning 71  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  179 1   DialogDD
Warning 72  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  185 1   DialogDD
Warning 94  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  82  1   DialogDS
Warning 95  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  88  1   DialogDS
Warning 99  warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  179 1   DialogDS
Warning 100 warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  185 1   DialogDS
Warning 122 warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  82  1   DialogSS
Warning 123 warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  88  1   DialogSS
Warning 127 warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  179 1   DialogSS
Warning 128 warning C4996: '_snwprintf': This function or variable may be unsafe. Consider using _snwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  185 1   DialogSS
Warning 6   warning C4996: '_swprintf': This function or variable may be unsafe. Consider using _swprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  155 1   XListCtrlDD
Warning 28  warning C4996: '_swprintf': This function or variable may be unsafe. Consider using _swprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  155 1   XListCtrlDS
Warning 49  warning C4996: '_swprintf': This function or variable may be unsafe. Consider using _swprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  155 1   XListCtrlSS
Warning 70  warning C4996: '_swprintf': This function or variable may be unsafe. Consider using _swprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  155 1   DialogDD
Warning 98  warning C4996: '_swprintf': This function or variable may be unsafe. Consider using _swprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  155 1   DialogDS
Warning 126 warning C4996: '_swprintf': This function or variable may be unsafe. Consider using _swprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  155 1   DialogSS
Warning 4   warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  93  1   XListCtrlDD
Warning 9   warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  190 1   XListCtrlDD
Warning 26  warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  93  1   XListCtrlDS
Warning 31  warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  190 1   XListCtrlDS
Warning 47  warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  93  1   XListCtrlSS
Warning 52  warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  190 1   XListCtrlSS
Warning 68  warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  93  1   DialogDD
Warning 73  warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  190 1   DialogDD
Warning 76  warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltestdlg.cpp 635 1   DialogDD
Warning 96  warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  93  1   DialogDS
Warning 101 warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  190 1   DialogDS
Warning 104 warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltestdlg.cpp 635 1   DialogDS
Warning 124 warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  93  1   DialogSS
Warning 129 warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  190 1   DialogSS
Warning 132 warning C4996: '_vsnwprintf': This function or variable may be unsafe. Consider using _vsnwprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltestdlg.cpp 635 1   DialogSS
Warning 77  warning C4996: 'CWinApp::Enable3dControls': CWinApp::Enable3dControls is no longer needed. You should remove this call. c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltest.cpp    41  1   DialogDD
Warning 105 warning C4996: 'CWinApp::Enable3dControls': CWinApp::Enable3dControls is no longer needed. You should remove this call. c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltest.cpp    41  1   DialogDS
Warning 133 warning C4996: 'CWinApp::Enable3dControlsStatic': CWinApp::Enable3dControlsStatic is no longer needed. You should remove this call. c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltest.cpp    43  1   DialogSS
Warning 5   warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  107 1   XListCtrlDD
Warning 10  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  204 1   XListCtrlDD
Warning 27  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  107 1   XListCtrlDS
Warning 32  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  204 1   XListCtrlDS
Warning 48  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  107 1   XListCtrlSS
Warning 53  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  204 1   XListCtrlSS
Warning 69  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  107 1   DialogDD
Warning 74  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  204 1   DialogDD
Warning 79  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   597 1   DialogDD
Warning 80  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   616 1   DialogDD
Warning 81  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   617 1   DialogDD
Warning 97  warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  107 1   DialogDS
Warning 102 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  204 1   DialogDS
Warning 107 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   597 1   DialogDS
Warning 108 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   616 1   DialogDS
Warning 109 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   617 1   DialogDS
Warning 125 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  107 1   DialogSS
Warning 130 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\xtrace.h  204 1   DialogSS
Warning 135 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   597 1   DialogSS
Warning 136 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   616 1   DialogSS
Warning 137 warning C4996: 'wcscat': This function or variable may be unsafe. Consider using wcscat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   617 1   DialogSS
Warning 11  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\dropwnd.cpp   50  1   XListCtrlDD
Warning 12  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\droplistbox.cpp   43  1   XListCtrlDD
Warning 13  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   275 1   XListCtrlDD
Warning 16  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   863 1   XListCtrlDD
Warning 17  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   919 1   XListCtrlDD
Warning 18  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   924 1   XListCtrlDD
Warning 33  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\dropwnd.cpp   50  1   XListCtrlDS
Warning 34  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\droplistbox.cpp   43  1   XListCtrlDS
Warning 35  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   275 1   XListCtrlDS
Warning 38  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   863 1   XListCtrlDS
Warning 39  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   919 1   XListCtrlDS
Warning 40  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   924 1   XListCtrlDS
Warning 54  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\dropwnd.cpp   50  1   XListCtrlSS
Warning 55  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\droplistbox.cpp   43  1   XListCtrlSS
Warning 56  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   275 1   XListCtrlSS
Warning 59  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   863 1   XListCtrlSS
Warning 60  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   919 1   XListCtrlSS
Warning 61  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   924 1   XListCtrlSS
Warning 78  warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   520 1   DialogDD
Warning 106 warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   520 1   DialogDS
Warning 134 warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xhyperlink.cpp   520 1   DialogSS
Warning 75  warning C4996: 'wcsncpy': This function or variable may be unsafe. Consider using wcsncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltestdlg.cpp 630 1   DialogDD
Warning 103 warning C4996: 'wcsncpy': This function or variable may be unsafe. Consider using wcsncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltestdlg.cpp 630 1   DialogDS
Warning 131 warning C4996: 'wcsncpy': This function or variable may be unsafe. Consider using wcsncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.  c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\dialog\xlistctrltestdlg.cpp 630 1   DialogSS
Warning 14  warning C4996: 'wcstok': This function or variable may be unsafe. Consider using wcstok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   277 1   XListCtrlDD
Warning 15  warning C4996: 'wcstok': This function or variable may be unsafe. Consider using wcstok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   281 1   XListCtrlDD
Warning 36  warning C4996: 'wcstok': This function or variable may be unsafe. Consider using wcstok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   277 1   XListCtrlDS
Warning 37  warning C4996: 'wcstok': This function or variable may be unsafe. Consider using wcstok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   281 1   XListCtrlDS
Warning 57  warning C4996: 'wcstok': This function or variable may be unsafe. Consider using wcstok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   277 1   XListCtrlSS
Warning 58  warning C4996: 'wcstok': This function or variable may be unsafe. Consider using wcstok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.    c:\users\yixuan\documents\visual studio 2013\projects\xlistctrl\xlistctrl\advcombobox.cpp   281 1   XListCtrlSS
Warning 21  warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/SAFESEH' specification    C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\XListCtrlLib\AdvComboBox.obj    XListCtrlDD
Warning 85  warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/SAFESEH' specification    C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\About.obj    DialogDD
Warning 113 warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/SAFESEH' specification    C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\About.obj    DialogDS
Warning 141 warning LNK4075: ignoring '/EDITANDCONTINUE' due to '/SAFESEH' specification    C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\About.obj    DialogSS
Warning 84  warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\About.obj    DialogDD
Warning 86  warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\InitList.obj DialogDD
Warning 87  warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\StdAfx.obj   DialogDD
Warning 88  warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XHyperLink.obj   DialogDD
Warning 89  warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XListCtrlTest.obj    DialogDD
Warning 90  warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XListCtrlTestDlg.obj DialogDD
Warning 112 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\About.obj    DialogDS
Warning 114 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\InitList.obj DialogDS
Warning 115 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\StdAfx.obj   DialogDS
Warning 116 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XHyperLink.obj   DialogDS
Warning 117 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XListCtrlTest.obj    DialogDS
Warning 118 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XListCtrlTestDlg.obj DialogDS
Warning 140 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\About.obj    DialogSS
Warning 142 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\InitList.obj DialogSS
Warning 143 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\StdAfx.obj   DialogSS
Warning 144 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XHyperLink.obj   DialogSS
Warning 145 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XListCtrlTest.obj    DialogSS
Warning 146 warning LNK4229: invalid directive '/ignore:4089' encountered; ignored  C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\XListCtrlTestDlg.obj DialogSS
Warning 83  warning MSB8012: TargetName(DialogDD) does not match the Linker's OutputFile property value (DialogDDDU). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1188    5   DialogDD
Warning 111 warning MSB8012: TargetName(DialogDS) does not match the Linker's OutputFile property value (DialogDSDU). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1188    5   DialogDS
Warning 139 warning MSB8012: TargetName(DialogSS) does not match the Linker's OutputFile property value (DialogSSDU). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1188    5   DialogSS
Warning 20  warning MSB8012: TargetName(XListCtrlDD) does not match the Linker's OutputFile property value (XListCtrlDDDU). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1188    5   XListCtrlDD
Warning 42  warning MSB8012: TargetName(XListCtrlDS) does not match the Library's OutputFile property value (XListCtrlDSDU). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile). C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1356    5   XListCtrlDS
Warning 63  warning MSB8012: TargetName(XListCtrlSS) does not match the Library's OutputFile property value (XListCtrlSSDU). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile). C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1356    5   XListCtrlSS
Warning 82  warning MSB8012: TargetPath(C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\.\Debug_Unicode\DialogDD.exe) does not match the Linker's OutputFile property value (C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\Debug_Unicode\DialogDDDU.exe). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1186    5   DialogDD
Warning 110 warning MSB8012: TargetPath(C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\.\Debug_Unicode\DialogDS.exe) does not match the Linker's OutputFile property value (C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\Debug_Unicode\DialogDSDU.exe). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1186    5   DialogDS
Warning 138 warning MSB8012: TargetPath(C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\.\Debug_Unicode\DialogSS.exe) does not match the Linker's OutputFile property value (C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\Dialog\Debug_Unicode\DialogSSDU.exe). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1186    5   DialogSS
Warning 19  warning MSB8012: TargetPath(C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\XListCtrlLib\.\Debug_Unicode\XListCtrlDD.dll) does not match the Linker's OutputFile property value (C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\XListCtrlLib\Debug_Unicode\XListCtrlDDDU.dll). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile). C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1186    5   XListCtrlDD
Warning 41  warning MSB8012: TargetPath(C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\XListCtrlLib\.\Debug_Unicode\XListCtrlDS.lib) does not match the Library's OutputFile property value (C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\XListCtrlLib\Debug_Unicode\XListCtrlDSDU.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile). C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1354    5   XListCtrlDS
Warning 62  warning MSB8012: TargetPath(C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\XListCtrlLib\.\Debug_Unicode\XListCtrlSS.lib) does not match the Library's OutputFile property value (C:\Users\yixuan\Documents\Visual Studio 2013\Projects\XListCtrl\XListCtrlLib\Debug_Unicode\XListCtrlSSDU.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile). C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 1354    5   XListCtrlSS
Warning 121 warning MSB8028: The intermediate directory (.\Debug_Unicode\) contains files shared from another project (DialogDD.vcxproj, DialogDS.vcxproj).  This can lead to incorrect clean and rebuild behavior. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 381 5   DialogSS
Warning 93  warning MSB8028: The intermediate directory (.\Debug_Unicode\) contains files shared from another project (DialogDD.vcxproj, DialogSS.vcxproj).  This can lead to incorrect clean and rebuild behavior. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 381 5   DialogDS
Warning 65  warning MSB8028: The intermediate directory (.\Debug_Unicode\) contains files shared from another project (DialogDS.vcxproj, DialogSS.vcxproj).  This can lead to incorrect clean and rebuild behavior. C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 381 5   DialogDD
Warning 44  warning MSB8028: The intermediate directory (.\Debug_Unicode\) contains files shared from another project (XListCtrlDD.vcxproj, XListCtrlDS.vcxproj).  This can lead to incorrect clean and rebuild behavior.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 381 5   XListCtrlSS
Warning 23  warning MSB8028: The intermediate directory (.\Debug_Unicode\) contains files shared from another project (XListCtrlDD.vcxproj, XListCtrlSS.vcxproj).  This can lead to incorrect clean and rebuild behavior.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 381 5   XListCtrlDS
Warning 1   warning MSB8028: The intermediate directory (.\Debug_Unicode\) contains files shared from another project (XListCtrlDS.vcxproj, XListCtrlSS.vcxproj).  This can lead to incorrect clean and rebuild behavior.   C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 381 5   XListCtrlDD

GeneralMy vote of 5 Pin
Xjkstar23-Jul-14 22:25
Xjkstar23-Jul-14 22:25 
GeneralRe: My vote of 5 Pin
yixuan1782-Nov-14 1:07
yixuan1782-Nov-14 1:07 
QuestionVisual Studio 2012 Pin
Member 104081419-Jun-14 22:25
Member 104081419-Jun-14 22:25 
AnswerRe: Visual Studio 2012 Pin
Xjkstar23-Jul-14 22:17
Xjkstar23-Jul-14 22:17 
QuestionWhere to get the Latest Version Pin
LeslieM14-Mar-14 5:17
LeslieM14-Mar-14 5:17 
QuestionVisual Studio 2012 Pin
Member 100311734-Jul-13 8:02
Member 100311734-Jul-13 8:02 
AnswerRe: Visual Studio 2012 Pin
gbjbaanb13-Sep-13 4:33
gbjbaanb13-Sep-13 4:33 
Questionpurchase latest version from hans website Pin
garyt14-Apr-13 8:58
garyt14-Apr-13 8:58 
Bugbug of xlistctrl(combo box) Pin
sharkka16-Jan-13 23:23
sharkka16-Jan-13 23:23 
QuestionSuggested Enhancements Pin
Sharon F28-Sep-12 10:17
Sharon F28-Sep-12 10:17 
QuestionClick the check box of the first column is not responding! Pin
zemelaoshi1-Aug-12 20:50
zemelaoshi1-Aug-12 20:50 
QuestionAlignment of heading text Pin
David Crow28-Feb-12 8:00
David Crow28-Feb-12 8:00 
QuestionTest app won't run Pin
David Crow27-Feb-12 5:28
David Crow27-Feb-12 5:28 
QuestionThe demo project build error... Pin
cyfage19-Feb-12 21:25
cyfage19-Feb-12 21:25 
AnswerRe: The demo project build error... Pin
David Crow27-Feb-12 4:24
David Crow27-Feb-12 4:24 
GeneralRe: The demo project build error... Pin
gindar19-Apr-12 4:04
gindar19-Apr-12 4:04 
AnswerRe: The demo project build error... Pin
gindar19-Apr-12 4:02
gindar19-Apr-12 4:02 
AnswerRe: The demo project build error... Pin
Xjkstar23-Jul-14 22:03
Xjkstar23-Jul-14 22:03 
Questionabout XListCtrl 1.5 license Pin
hugeval27-Dec-11 0:26
hugeval27-Dec-11 0:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.