IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C++/CLI Discussion :

VC++ raccourcis clavier fonctionnent en Debug mais pas en Release


Sujet :

C++/CLI

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre chevronné Avatar de electroremy
    Homme Profil pro
    Ingénieur sécurité
    Inscrit en
    Juin 2007
    Messages
    1 033
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France, Doubs (Franche Comté)

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2007
    Messages : 1 033
    Par défaut VC++ raccourcis clavier fonctionnent en Debug mais pas en Release
    Bonjour,

    J'ai repris un ancien projet Open Source devellopé en C++, créé par quelqu'un d'autre

    J'arrive à le modifier avec Visual Studio 2015 Community Edition

    Il s'agit du logiciel ShiftN, j'en avais parlé ici :
    https://www.developpez.net/forums/d2...-jour-shift-n/

    Le soucis c'est que dans l'IDE je n'ai que du code, je ne peux pas modifier l'interface graphique autrement que par le code

    Malgrès cela, jusqu'à maintenant j'avais réussi à apporter pas mal de modifications intéressantes, notamment des fonctions d'édition supplémentaires à la souris.

    J'ai apporté d'autres modifications, mais que suis bloqué par un problème tout bête...

    Pour éviter les TMS avec la souris, ce sont des fonctions qui utilisent les touches du clavier.

    En faisant du reverse ingéneering, j'arrive à ajouter ces commandes au clavier, mais ça fonctionne en DEBUG mais pas en RELEASE

    Le soucis c'est que l'executable en version DEBUG est beaucoup plus lent

    Voici les modifications apportées au code :

    Fichier ShiftN.rc :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    IDR_MAINFRAME ACCELERATORS 
    BEGIN
        "N",            ID_APP_ABOUT,           VIRTKEY, SHIFT, NOINVERT
        "C",            ID_CTRLC,               VIRTKEY, CONTROL, NOINVERT
        "V",            ID_CTRLV,               VIRTKEY, CONTROL, NOINVERT
        VK_DELETE,      ID_DELMH,               VIRTKEY, NOINVERT
        VK_F1,          ID_HELPMH,              VIRTKEY, NOINVERT
        VK_PRIOR,       ID_MHUP,                VIRTKEY, NOINVERT
        VK_NEXT,        ID_MHDOWN,              VIRTKEY, NOINVERT
     
    	//2026 - Ajout des raccourcis clavier ---------------------------------------------------------------------------------------------------
     
    	// Debug: OK - Release: Ne fonctionne pas
    	VK_F5, ID_TOGGLE_OPTIM_AT_LOAD, VIRTKEY, NOINVERT
     
    	// Debug: OK - Release: Ne fonctionne pas
    	VK_F2, ID_SAVE_CROP, VIRTKEY, NOINVERT
     
    	// Debug: OK  - Release: Ne fonctionne pas
    	VK_F9, ID_SAVE_CROP, VIRTKEY, NOINVERT
     
    	// Debug: OK  - Release: Ne fonctionne pas
    	VK_F3, ID_SAVE_NO_CROP, VIRTKEY, NOINVERT
     
    	// Debug: OK - Release: Ne fonctionne pas
    	VK_F10, ID_SAVE_NO_CROP, VIRTKEY, NOINVERT
     
    	// Debug: OK - Release: Ne fonctionne pas
    	VK_F11, ID_ANWENDEN_KORREKTURANPASSEN, VIRTKEY, NOINVERT
     
    	// Debug: OK - Release: Fonctionne mais affiche un point d'arrêt quand on lance le programme en version Release depuis le compilateur
    	VK_F12, MH_Re, VIRTKEY, NOINVERT
    	// --------------------------------------------------------------------------------------------------------------------------------------
     
    END
    Fichier ressurce.h :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    //{{NO_DEPENDENCIES}}
    // Microsoft Visual C++ generated include file.
    // Used by ShiftN.rc
    //
    #define IDD_ABOUTBOX                    100
    #define IDB_SPLASH                      102
    #define CG_IDD_MYDIALOGBAR              103
    #define CG_ID_VIEW_MYDIALOGBAR          104
    #define CG_IDD_PROGRESS                 105
    #define CG_IDS_PROGRESS_CAPTION         106
    #define IDR_MAINFRAME                   128
    #define IDR_SHIFTNTYPE                  129
    #define IDD_DIALOG1                     130
    #define IDD_DIALOG2                     131
    #define IDD_DIALOG3                     133
    #define IDD_DIALOG4                     134
    #define IDD_DIALOG5                     135
    #define IDD_DIALOG6                     136
    #define IDD_DIALOG7                     137
    #define IDD_DIALOG8                     138
    #define IDD_DIALOG9                     139
    #define IDD_DIALOG10                    140
    #define IDD_DIALOG11                    141
    #define IDD_DIALOG12                    149
    #define CG_IDD_MYDIALOGBAR_SAVE         150
    #define IDD_DIALOG13                    151
    #define IDC_CHECK1                      1000
    #define IDC_CHECK2                      1001
    #define IDC_CHECK3                      1002
    #define IDC_CHECK4                      1003
    #define CG_IDC_PROGDLG_PROGRESS         1003
    #define IDC_CHECK5                      1004
    #define IDC_CHECK6                      1005
    #define IDC_EDIT1                       1006
    #define IDC_CHECK7                      1006
    #define IDC_EDIT2                       1007
    #define IDC_CHECK8                      1007
    #define IDC_PROGRESS1                   1007
    #define IDC_EDIT3                       1008
    #define IDC_RADIO1                      1008
    #define IDC_EDIT4                       1009
    #define IDC_RADIO2                      1009
    #define IDC_EDIT5                       1010
    #define IDC_BUTTON1                     1010
    #define IDC_CHECK9                      1010
    #define IDC_RADIO3                      1010
    #define IDC_EDIT6                       1011
    #define IDC_SLIDER1                     1011
    #define IDC_RADIO4                      1011
    #define IDC_EDIT7                       1012
    #define IDC_SLIDER2                     1012
    #define IDC_CHECK10                     1012
    #define IDC_EDIT8                       1013
    #define IDC_SLIDER3                     1013
    #define IDC_CHECK11                     1013
    #define IDC_EDIT9                       1014
    #define IDC_SLIDER4                     1014
    #define IDC_EDIT11                      1015
    #define IDC_EDIT10                      1016
    #define IDC_EDIT12                      1016
    #define IDC_EDIT13                      1017
    #define IDC_EDIT14                      1018
    #define IDC_EDIT15                      1019
    #define MH_SAVE                         32771
    #define MH_LOAD                         32772
    #define MH_PARAM                        32773
    #define MH_Go                           32774
    #define ID_STAPELVERARBEITUNG           32775
    #define MH_Go2                          32775
    #define MH_BATCH                        32776
    #define MH_ORIG                         32777
    #define MH_GRAU                         32778
    #define MH_SCHWARZ                      32779
    #define ID_DARSTELLUNG                  32780
    #define MH_DARST                        32781
    #define ID_START                        32785
    #define ID_OPTIONS_LANGUAGE             32786
    #define ID_ANWENDEN_KORREKTURANPASSEN   32787
    #define ID_DATEI_SPEICHERNUNTER         32788
    #define MH_Re                           32791
    #define ID_GITTER                       32792
    #define ID_SAVE_CLOSE                   32793
    #define ID_FILE_SAVEANDEXIT             32794
    #define ID_ACKNOW                       32795
    #define ID_EINSTELLUNGEN_SCHALTFLCHESPEICHERN 32797
    #define ID_CTRLC                        32798
    #define ID_CTRLV                        32799
    #define ID_HELPMH                       32800
    #define ID_DELMH                        32805
    #define ID_ACCELERATOR32809             32809
    #define ID_MHUP                         32811
    #define ID_MHDOWN                       32812
     
    //2026 ----------------------------------------
    #define ID_SAVE_CROP                    32801
    #define ID_SAVE_NO_CROP                 32802
    #define ID_TOGGLE_OPTIM_AT_LOAD         32803
    //---------------------------------------------
     
     
    // Next default values for new objects
    // 
    #ifdef APSTUDIO_INVOKED
    #ifndef APSTUDIO_READONLY_SYMBOLS
    #define _APS_3D_CONTROLS                     1
    #define _APS_NEXT_RESOURCE_VALUE        152
    #define _APS_NEXT_COMMAND_VALUE         32814
    #define _APS_NEXT_CONTROL_VALUE         1012
    #define _APS_NEXT_SYMED_VALUE           107
    #endif
    #endif
    Fichier ShiftNView.h :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    // ShiftNView.h : Schnittstelle der Klasse CShiftNView
    //
    /////////////////////////////////////////////////////////////////////////////
     
    #undef FAR
     
    #if !defined(AFX_SHIFTNVIEW_H__81C9C6D6_853F_4B8C_A993_E824F347600A__INCLUDED_)
    #define AFX_SHIFTNVIEW_H__81C9C6D6_853F_4B8C_A993_E824F347600A__INCLUDED_
     
    #if _MSC_VER > 1000
    #pragma once
    #endif // _MSC_VER > 1000
     
     
    class CShiftNView : public CView
    {
    protected: // Nur aus Serialisierung erzeugen
    	CShiftNView();
    	DECLARE_DYNCREATE(CShiftNView)
     
    // Attribute
    public:
    	CShiftNDoc* GetDocument();
     
    // Operationen
    public:
     
    // Überladungen
    	// Vom Klassenassistenten generierte Überladungen virtueller Funktionen
    	//{{AFX_VIRTUAL(CShiftNView)
    	public:
    	virtual void OnDraw(CDC* pDC);  // überladen zum Zeichnen dieser Ansicht
    	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
    	virtual void OnFinalRelease();
    	virtual DROPEFFECT OnDragEnter(COleDataObject* pDataObject, DWORD dwKeyState, CPoint point);
    	virtual void OnDragLeave();
    	virtual DROPEFFECT OnDragOver(COleDataObject* pDataObject, DWORD dwKeyState, CPoint point);
    	virtual BOOL OnDrop(COleDataObject* pDataObject, DROPEFFECT dropEffect, CPoint point);
    	protected:
    	virtual BOOL OnScrollBy(CSize sizeScroll, BOOL bDoScroll = TRUE);
    	virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView);
    	//}}AFX_VIRTUAL
     
    // Implementierung
    public:
    	virtual ~CShiftNView();
    #ifdef _DEBUG
    	virtual void AssertValid() const;
    	virtual void Dump(CDumpContext& dc) const;
    #endif
     
    protected:
     
    // Generierte Message-Map-Funktionen
    protected:
    	//{{AFX_MSG(CShiftNView)
    	afx_msg void OnSave();
    	afx_msg void OnSaveAs();
    	afx_msg void OnSaveExit();
    	afx_msg void OnLoad();
    	afx_msg void OnParam();
    	afx_msg void OnCtrlC();
    	afx_msg void OnCtrlV();
    	afx_msg void OnGo();
    	afx_msg void OnGitter();
    	afx_msg void Reoptimize();
    	afx_msg void OnBatch();
    	afx_msg void OnDarst();
    	afx_msg void OnLang();
    	afx_msg void OnDownMH();
    	afx_msg void OnUpMH();
    	afx_msg void OnSchaltfl();
    	afx_msg void OnAnwendenKorrekturanpassen();
    	afx_msg void OnGoB();
    	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
    	afx_msg void OnDelMH();
    	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
    	afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
    	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
    	afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
    	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
    	afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
    	afx_msg void OnSize(UINT nType, int cx, int cy);
    	afx_msg void OnSetFocus(CWnd* pOldWnd);
    	afx_msg void OnKillFocus(CWnd* pNewWnd);
    	afx_msg void OnUpdateGitter(CCmdUI* pCmdUI);
    	afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
     
    	// 2026 ----------------------------------
    	afx_msg void OnSaveCrop();
    	afx_msg void OnSaveNoCrop();
    	afx_msg void OnToogleOptimAtLoad();
    	// ---------------------------------------
     
     
    	//}}AFX_MSG
    	DECLARE_MESSAGE_MAP()
    };
     
    #ifndef _DEBUG  // Testversion in ShiftNView.cpp
    inline CShiftNDoc* CShiftNView::GetDocument()
       { return (CShiftNDoc*)m_pDocument; }
    #endif
     
    /////////////////////////////////////////////////////////////////////////////
     
    //{{AFX_INSERT_LOCATION}}
    // Microsoft Visual C++ fügt unmittelbar vor der vorhergehenden Zeile zusätzliche Deklarationen ein.
     
    #endif // !defined(AFX_SHIFTNVIEW_H__81C9C6D6_853F_4B8C_A993_E824F347600A__INCLUDED_)
    Fichier ShiftNViewcpp:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    BEGIN_MESSAGE_MAP(CShiftNView, CView)
    	//{{AFX_MSG_MAP(CShiftNView)
    	ON_COMMAND(MH_SAVE, OnSave)
    	ON_COMMAND(ID_DATEI_SPEICHERNUNTER, OnSaveAs)
    	ON_COMMAND(ID_SAVE_CLOSE, OnSaveExit)
    	ON_COMMAND(MH_LOAD, OnLoad)
    	ON_COMMAND(MH_PARAM, OnParam)
    	ON_COMMAND(ID_CTRLC, OnCtrlC)
    	ON_COMMAND(ID_CTRLV, OnCtrlV)
    	ON_COMMAND(MH_Go, OnGo)
    	ON_COMMAND(ID_GITTER, OnGitter)
    	ON_COMMAND(MH_Re, Reoptimize)
    	ON_COMMAND(MH_BATCH, OnBatch)
    	ON_COMMAND(ID_DELMH, OnDelMH)
    	ON_COMMAND(MH_DARST, OnDarst)
    	ON_COMMAND(ID_EINSTELLUNGEN_SCHALTFLCHESPEICHERN, OnSchaltfl)
    	ON_COMMAND(ID_OPTIONS_LANGUAGE, OnLang)
    	ON_COMMAND(ID_MHUP, OnUpMH)
    	ON_COMMAND(ID_MHDOWN, OnDownMH)
    	ON_COMMAND(ID_ANWENDEN_KORREKTURANPASSEN, OnAnwendenKorrekturanpassen)
    	ON_WM_CREATE()
    	ON_WM_LBUTTONDOWN()
    	ON_WM_MBUTTONDOWN()
    	ON_WM_MOUSEMOVE()
    	ON_WM_RBUTTONDOWN()
    	ON_WM_LBUTTONUP()
    	ON_WM_MBUTTONUP()
    	ON_WM_SIZE()
    	ON_WM_SETFOCUS()
    	ON_WM_KILLFOCUS()
    	ON_UPDATE_COMMAND_UI(ID_GITTER, OnUpdateGitter)
    	ON_WM_RBUTTONUP()
    	//}}AFX_MSG_MAP
     
    	//2026 -----------------------------------------------------
    	ON_COMMAND(ID_SAVE_CROP, OnSaveCrop)
    	ON_COMMAND(ID_SAVE_NO_CROP, OnSaveNoCrop)
    	ON_COMMAND(ID_TOGGLE_OPTIM_AT_LOAD, OnToogleOptimAtLoad)
    	//----------------------------------------------------------
     
    END_MESSAGE_MAP()
     
    ...
     
     
    //2026
    void CShiftNView::OnToogleOptimAtLoad() {
    	OptimAtLoad++;
    	if (OptimAtLoad >2) {
    		OptimAtLoad = 0;
    	}
    }
    void CShiftNView::OnSaveCrop()
    {
    	int beschneiden_old;
    	beschneiden_old = beschneiden;
    	beschneiden = 1;
    	OnSave();
    	beschneiden = beschneiden_old;
    }
    void CShiftNView::OnSaveNoCrop()
    {
    	int beschneiden_old;
    	beschneiden_old = beschneiden;
    	beschneiden = 0;
    	OnSave();
    	beschneiden = beschneiden_old;
    }
    Vous pouvez télécharger le code complet ici :

    https://drive.google.com/file/d/1ueo...ew?usp=sharing

    Merci

    A bientôt
    Quand deux personnes échangent un euro, chacun repart avec un euro.
    Quand deux personnes échangent une idée, chacun repart avec deux idées.

  2. #2
    Membre chevronné Avatar de electroremy
    Homme Profil pro
    Ingénieur sécurité
    Inscrit en
    Juin 2007
    Messages
    1 033
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France, Doubs (Franche Comté)

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2007
    Messages : 1 033
    Par défaut
    Bonjour,

    je me demande si le problème vient des "nombres magiques" utilisés dans resource.h

    Si je remplace

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    #define ID_SAVE_CROP                    32801
    #define ID_SAVE_NO_CROP                 32802
    #define ID_TOGGLE_OPTIM_AT_LOAD         32803
    Par

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    //2026 ----------------------------------------
    #define ID_SAVE_CROP                    32806
    #define ID_SAVE_NO_CROP                 32807
    #define ID_TOGGLE_OPTIM_AT_LOAD         32808
    //---------------------------------------------
    Ou par

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    #define ID_SAVE_CROP                    60801
    #define ID_SAVE_NO_CROP                 60802
    #define ID_TOGGLE_OPTIM_AT_LOAD         60803
    Ca fonctionne en debug... mais toujours pas en release

    Evidemment à chaque fois j'ai vérifié que ces valeurs n'étaient pas utilisées

    J'ai cherché "DEBUG" dans le code pour voir si le problème de venait pas de là, rien de probant...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
     
    #ifndef _DEBUG  // Testversion in ShiftNView.cpp
    inline CShiftNDoc* CShiftNView::GetDocument()
       { return (CShiftNDoc*)m_pDocument; }
    #endif
     
    #ifdef _DEBUG
    	virtual void AssertValid() const;
    	virtual void Dump(CDumpContext& dc) const;
    #endif
     
    #ifndef _DEBUG  // Testversion in ShiftNView.cpp
    inline CShiftNDoc* CShiftNView::GetDocument()
       { return (CShiftNDoc*)m_pDocument; }
    #endif
     
     
    VS_VERSION_INFO VERSIONINFO
     FILEVERSION 4,0,0,1
     PRODUCTVERSION 4,0,0,1
     FILEFLAGSMASK 0x3fL
    #ifdef _DEBUG
     FILEFLAGS 0x1L
    #else
     FILEFLAGS 0x0L
    #endif
     FILEOS 0x4L
     FILETYPE 0x1L
     FILESUBTYPE 0x0L
    BEGIN
        BLOCK "StringFileInfo"
        BEGIN
            BLOCK "000004b0"
            BEGIN
                VALUE "Comments", "Marcus Hebel"
                VALUE "FileDescription", "ShiftN"
                VALUE "FileVersion", "5, 0, 0, 1"
                VALUE "InternalName", "ShiftN"
                VALUE "LegalCopyright", "Marcus Hebel 1998-2010"
                VALUE "OriginalFilename", "ShiftN.EXE"
                VALUE "ProductName", "ShiftN"
                VALUE "ProductVersion", "5, 0, 0, 1"
            END
        END
        BLOCK "VarFileInfo"
        BEGIN
            VALUE "Translation", 0x0, 1200
        END
    END
     
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #undef THIS_FILE
    static char THIS_FILE[] = __FILE__;
    #endif
    Dans les propriétés du projet

    En DEBUG :

    C/C++ ligne de commande :

    /Yu"stdafx.h" /GS /analyze- /W3 /Zc:wchar_t /ZI /Gm /Od /Fd".\Debug/" /Zc:inline /fp:precise /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_CRT_SECURE_NO_WARNINGS" /D "_VC80_UPGRADE=0x0600" /D "_MBCS" /D "_AFXDLL" /errorReport:prompt /WX- /Zc:forScope /RTC1 /GR /Gd /Oy- /MDd /Fa".\Debug/" /EHsc /nologo /Fo".\Debug/" /Fp".\Debug/ShiftN.pch"

    Editeur de Liens ligne de commande :
    /OUT:".\Debug/ShiftN.exe" /MANIFEST /PDB:".\Debug/ShiftN.pdb" /DYNAMICBASE:NO "htmlhelp.lib" "libtiff_debug/libtiff/libtiff/libtiff.lib" /DEBUG /MACHINE:X86 /SAFESEH /INCREMENTAL /PGD:".\Debug\ShiftN.pgd" /SUBSYSTEM:WINDOWS /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /ManifestFile:".\Debug\ShiftN.exe.intermediate.manifest" /ERRORREPORTROMPT /NOLOGO /TLBID:1

    Manifest
    /verbose /out:".\Debug\ShiftN.exe.embed.manifest" /nologo ".\Debug\ShiftN.exe.embed.manifest.res"

    Ressources
    /D "_DEBUG" /D "_VC80_UPGRADE=0x0600" /D "_AFXDLL" /l 0x0407 /nologo /fo".\Debug\%(Filename).res"

    Generateur de document XML
    /Fo".\Debug\ShiftN.xml" /nologo

    Informations de consultation
    /o".\Debug/ShiftN.bsc" /nologo


    En RELEASE :

    C/C++ ligne de commande :

    /Yu"stdafx.h" /GS /analyze- /W3 /Gy /Zc:wchar_t /Zi /Gm- /O2 /Ob1 /Fd".\Release/" /Zc:inline /fp:precise /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_CRT_SECURE_NO_WARNINGS" /D "_BIND_TO_CURRENT_VCLIBS_VERSION=1" /D "_VC80_UPGRADE=0x0600" /D "_MBCS" /D "_AFXDLL" /errorReport:prompt /GF /WX- /Zc:forScope /GR /Gd /Oy- /MD /Fa".\Release/" /EHsc /nologo /Fo".\Release/" /Fp".\Release/ShiftN.pch"

    Editeur de Liens ligne de commande :
    /OUT:".\Release/ShiftN.exe" /MANIFEST /PDB:".\Release/ShiftN.pdb" /DYNAMICBASE:NO "htmlhelp.lib" "libtiff/libtiff/libtiff.lib" /DEBUG /MACHINE:X86 /SAFESEH /INCREMENTAL:NO /PGD:".\Release\ShiftN.pgd" /SUBSYSTEM:WINDOWS /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /ManifestFile:".\Release\ShiftN.exe.intermediate.manifest" /ERRORREPORTROMPT /NOLOGO /TLBID:1

    Manifest
    /verbose /nologo

    Ressources
    /D "NDEBUG" /D "AFX_RESOURCE_DLL" /D "AFX_TARG_NEU" /D "_VC80_UPGRADE=0x0600" /D "_AFXDLL" /l 0x0407 /nologo /fo".\Release\%(Filename).res"

    Generateur de document XML
    /Fo".\Release\ShiftN.xml" /nologo

    Informations de consultation
    /o".\Release/ShiftN.bsc" /nologo
    Quand deux personnes échangent un euro, chacun repart avec un euro.
    Quand deux personnes échangent une idée, chacun repart avec deux idées.

  3. #3
    Membre chevronné Avatar de electroremy
    Homme Profil pro
    Ingénieur sécurité
    Inscrit en
    Juin 2007
    Messages
    1 033
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France, Doubs (Franche Comté)

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2007
    Messages : 1 033
    Par défaut
    Bonjour,

    Tout donne à penser qu'en Release, une partie du code n'est pas prise en compte.

    J'ai désactivé le raccourci clavier F1 dans le fichier ShiftN.rc en mettant la ligne correspondante en commentaire :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
     
    IDR_MAINFRAME ACCELERATORS 
    BEGIN
        "N",            ID_APP_ABOUT,           VIRTKEY, SHIFT, NOINVERT
        "C",            ID_CTRLC,               VIRTKEY, CONTROL, NOINVERT
        "V",            ID_CTRLV,               VIRTKEY, CONTROL, NOINVERT
        VK_DELETE,      ID_DELMH,               VIRTKEY, NOINVERT
        //VK_F1,          ID_HELPMH,              VIRTKEY, NOINVERT
        VK_PRIOR,       ID_MHUP,                VIRTKEY, NOINVERT
        VK_NEXT,        ID_MHDOWN,              VIRTKEY, NOINVERT
     
    	//2026 - Ajout des raccourcis clavier ---------------------------------------------------------------------------------------------------
     
    	// Debug: OK - Release: Ne fonctionne pas
    	VK_F5, ID_TOGGLE_OPTIM_AT_LOAD, VIRTKEY, NOINVERT
    	VK_F9, ID_SAVE_CROP, VIRTKEY, NOINVERT
    	VK_F10, ID_SAVE_NO_CROP, VIRTKEY, NOINVERT
    	VK_F11, ID_ANWENDEN_KORREKTURANPASSEN, VIRTKEY, NOINVERT
    	VK_F12, MH_RE, VIRTKEY, NOINVERT
    	// --------------------------------------------------------------------------------------------------------------------------------------
    END
    J'ai regénéré et compilé la solution, en Debug et en Release

    Quand je lance l'executable Debug, le raccourci clavier F1 ne fonctionne plus, c'est normal.

    En revanche, quand je lance l'executable Release, le raccourci clavier F1 fonctionne.

    Donc, quand je génére la solution en Release, Visual Studio n'utilise pas ce fichier ShiftN.rc mais autre chose à la place.

    Reste à savoir comment résoudre le problème. Je suis loin de maitriser toutes les fonctions "annexes" de Visual Studio, de plus c'est un projet obsolète et qui n'a pas été programmé par moi à l'origine

    Merci

    A bientôt
    Quand deux personnes échangent un euro, chacun repart avec un euro.
    Quand deux personnes échangent une idée, chacun repart avec deux idées.

  4. #4
    Membre chevronné Avatar de electroremy
    Homme Profil pro
    Ingénieur sécurité
    Inscrit en
    Juin 2007
    Messages
    1 033
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France, Doubs (Franche Comté)

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2007
    Messages : 1 033
    Par défaut
    Bonjour,

    Autre bizarrerie : dans l'exportateur de la solution, si je clique sur le fichier ShiftN.rc, il ne veut pas l'ouvrir en indiquant "ouvert dans un autre éditeur"

    Mais en utilisant la fonction "rechercher du texte" dans toute la solution, par exemple en cherchant "ACCELERATORS", il m'ouvre le fichier dans l'éditeur

    J'ai regardé dans les propriétés du fichiert ShiftN.rc dans l'IDE, tout est identique en Debug et en Release

    En cherchant dans tous les fichiers "ACCELERATORS" je ne le trouve que dans ShiftN.rc

    Même avec NotePad++, en ouvrant tout les fichiers sources du projets et des projet pour les dll de langue, en cherchant dans tous les fichiers "ACCELERATORS" je ne le trouve que dans ShiftN.rc

    Le fichier ShiftN.rc est bien inclus :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    //Microsoft Developer Studio generated resource script.
    //
    #include "resource.h"
     
    #define APSTUDIO_READONLY_SYMBOLS
    /////////////////////////////////////////////////////////////////////////////
    //
    // Generated from the TEXTINCLUDE 2 resource.
    //
    #include "afxres.h"
     
    /////////////////////////////////////////////////////////////////////////////
    #undef APSTUDIO_READONLY_SYMBOLS
     
    /////////////////////////////////////////////////////////////////////////////
    // Deutsch (Deutschland) resources
     
    #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)
    #ifdef _WIN32
    LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
    #pragma code_page(1252)
    #endif //_WIN32
     
    #ifdef APSTUDIO_INVOKED
    /////////////////////////////////////////////////////////////////////////////
    //
    // TEXTINCLUDE
    //
     
    1 TEXTINCLUDE DISCARDABLE 
    BEGIN
        "resource.h\0"
    END
     
    2 TEXTINCLUDE DISCARDABLE 
    BEGIN
        "#include ""afxres.h""\r\n"
        "\0"
    END
     
    3 TEXTINCLUDE DISCARDABLE 
    BEGIN
        "#define _AFX_NO_SPLITTER_RESOURCES\r\n"
        "#define _AFX_NO_OLE_RESOURCES\r\n"
        "#define _AFX_NO_TRACKER_RESOURCES\r\n"
        "#define _AFX_NO_PROPERTY_RESOURCES\r\n"
        "#include ""..\\ShiftN.rc""\r\n"
        "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)\r\n"
        "#ifdef _WIN32\r\n"
        "LANGUAGE 7, 1\r\n"
        "#pragma code_page(1252)\r\n"
        "#endif //_WIN32\r\n"
        "#include ""res\\shiftn_francais.rc2""  // Nicht mit Microsoft Visual C++ bearbeitete Ressourcen\r\n"
        "#include ""l.deu\\afxres.rc""          // Standardkomponenten\r\n"
        "#endif\r\n"
        "\0"
    END
     
    #endif    // APSTUDIO_INVOKED
     
    #endif    // Deutsch (Deutschland) resources
    /////////////////////////////////////////////////////////////////////////////
     
     
     
    #ifndef APSTUDIO_INVOKED
    /////////////////////////////////////////////////////////////////////////////
    //
    // Generated from the TEXTINCLUDE 3 resource.
    //
    #define _AFX_NO_SPLITTER_RESOURCES
    #define _AFX_NO_OLE_RESOURCES
    #define _AFX_NO_TRACKER_RESOURCES
    #define _AFX_NO_PROPERTY_RESOURCES
    #include "..\ShiftN.rc"
    #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)
    #ifdef _WIN32
    LANGUAGE 7, 1
    #pragma code_page(1252)
    #endif //_WIN32
    #include "res\shiftn_francais.rc2"  // Nicht mit Microsoft Visual C++ bearbeitete Ressourcen
    #include "l.deu\afxres.rc"          // Standardkomponenten
    #endif
     
    /////////////////////////////////////////////////////////////////////////////
    #endif    // not APSTUDIO_INVOKED
    J'ai essayé en nettoyant puis en regénérant toutes les DLL de langues, en Debug et en Release

    puis en nettoyant et en regénérant la solution,

    rien à faire, en Release la mise à jour de ShiftN.rc pour les raccourcis claviers n'est pas prise en compte

    Quand deux personnes échangent un euro, chacun repart avec un euro.
    Quand deux personnes échangent une idée, chacun repart avec deux idées.

  5. #5
    Membre chevronné Avatar de electroremy
    Homme Profil pro
    Ingénieur sécurité
    Inscrit en
    Juin 2007
    Messages
    1 033
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France, Doubs (Franche Comté)

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2007
    Messages : 1 033
    Par défaut
    Voici le résultat de la regénération en mode Debug :

    1>------ Début de la régénération globale*: Projet*: ShiftN, Configuration*: Debug Win32 ------
    1> StdAfx.cpp
    1>c:\program files (x86)\microsoft visual studio 14.0\vc\atlmfc\include\afx.h(38): warning C4996: 'MBCS_Support_Deprecated_In_MFC': MBCS support in MFC is deprecated and may be removed in a future version of MFC.
    1> c:\program files (x86)\microsoft visual studio 14.0\vc\atlmfc\include\afx.h(33): note: voir la déclaration de 'MBCS_Support_Deprecated_In_MFC'
    1> Toolbar.cpp
    1> SprachDlg.cpp
    1> Splash.cpp
    1> ShiftNView.cpp
    1>c:\onedrive\data\photo\_shiftn\shiftn_source\shiftnview.cpp(8253): warning C4244: '='*: conversion de 'double' en 'int', perte possible de données
    1>c:\onedrive\data\photo\_shiftn\shiftn_source\shiftnview.cpp(8254): warning C4244: '='*: conversion de 'double' en 'int', perte possible de données
    1>c:\onedrive\data\photo\_shiftn\shiftn_source\shiftnview.cpp(8435): warning C4244: '='*: conversion de 'double' en 'int', perte possible de données
    1>c:\onedrive\data\photo\_shiftn\shiftn_source\shiftnview.cpp(8436): warning C4244: '='*: conversion de 'double' en 'int', perte possible de données
    1> ShiftNDoc.cpp
    1> ShiftN.cpp
    1> SchaltflDlg.cpp
    1> ProgDlg.cpp
    1> ParamDlg.cpp
    1> MainFrm.cpp
    1> Ladefehler_Dialog.cpp
    1> Kein_Bild.cpp
    1> Keine_Ergebnisse.cpp
    1> iptc.cpp
    1> Hinweise.cpp
    1> DarstDlg.cpp
    1> AdjustDlg.cpp
    1> abspDlg.cpp
    1> Génération de code en cours...
    1> myglob.cpp
    1> makernote.cpp
    1> jpgfile.cpp
    1> gpsinfo.cpp
    1> exif.cpp
    1> Génération de code en cours...
    1>abspDlg.obj : warning LNK4075: ' /EDITANDCONTINUE' ignoré à cause de la spécification '/SAFESEH'
    1>LINK : warning LNK4098: conflit entre la bibliothèque par défaut 'MSVCRT' et les autres bibliothèques*; utilisez /NODEFAULTLIB:library
    1> ShiftN.vcxproj -> C:\OneDrive\DATA\PHOTO\_ShiftN\ShiftN_Source\.\Debug\ShiftN.exe
    1> ShiftN.vcxproj -> .\Debug/ShiftN.pdb (Full PDB)
    ========== Régénération globale*: 1 a réussi, 0 a échoué, 0 a été ignoré ==========

    Et mainteant, en mode Release :

    1>------ Début de la régénération globale*: Projet*: ShiftN, Configuration*: Release Win32 ------
    1> StdAfx.cpp
    1>C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\atlmfc\include\afx.h(38): warning C4996: 'MBCS_Support_Deprecated_In_MFC': MBCS support in MFC is deprecated and may be removed in a future version of MFC.
    1> C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\atlmfc\include\afx.h(33): note: voir la déclaration de 'MBCS_Support_Deprecated_In_MFC'
    1> abspDlg.cpp
    1> AdjustDlg.cpp
    1> DarstDlg.cpp
    1> Hinweise.cpp
    1> iptc.cpp
    1> Keine_Ergebnisse.cpp
    1> Kein_Bild.cpp
    1> Ladefehler_Dialog.cpp
    1> MainFrm.cpp
    1> ParamDlg.cpp
    1> ProgDlg.cpp
    1> SchaltflDlg.cpp
    1> ShiftN.cpp
    1> ShiftNDoc.cpp
    1> ShiftNView.cpp
    1>ShiftNView.cpp(8253): warning C4244: '='*: conversion de 'double' en 'int', perte possible de données
    1>ShiftNView.cpp(8254): warning C4244: '='*: conversion de 'double' en 'int', perte possible de données
    1>ShiftNView.cpp(8435): warning C4244: '='*: conversion de 'double' en 'int', perte possible de données
    1>ShiftNView.cpp(8436): warning C4244: '='*: conversion de 'double' en 'int', perte possible de données
    1> Splash.cpp
    1> SprachDlg.cpp
    1> Toolbar.cpp
    1> Génération de code en cours...
    1> exif.cpp
    1> gpsinfo.cpp
    1> jpgfile.cpp
    1> makernote.cpp
    1> myglob.cpp
    1> Génération de code en cours...
    1> ShiftN.vcxproj -> C:\OneDrive\DATA\PHOTO\_ShiftN\ShiftN_Source\.\Release\ShiftN.exe
    1> ShiftN.vcxproj -> .\Release/ShiftN.pdb (Full PDB)
    ========== Régénération globale*: 1 a réussi, 0 a échoué, 0 a été ignoré ==========
    Quand deux personnes échangent un euro, chacun repart avec un euro.
    Quand deux personnes échangent une idée, chacun repart avec deux idées.

  6. #6
    Membre chevronné Avatar de electroremy
    Homme Profil pro
    Ingénieur sécurité
    Inscrit en
    Juin 2007
    Messages
    1 033
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France, Doubs (Franche Comté)

    Informations professionnelles :
    Activité : Ingénieur sécurité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2007
    Messages : 1 033
    Par défaut
    Voici d'autres élements :

    Fichier ShiftN.vcxproj

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    <?xml version="1.0" encoding="utf-8"?>
    <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      <ItemGroup Label="ProjectConfigurations">
        <ProjectConfiguration Include="Debug|Win32">
          <Configuration>Debug</Configuration>
          <Platform>Win32</Platform>
        </ProjectConfiguration>
        <ProjectConfiguration Include="Release|Win32">
          <Configuration>Release</Configuration>
          <Platform>Win32</Platform>
        </ProjectConfiguration>
      </ItemGroup>
      <PropertyGroup Label="Globals">
        <ProjectGuid>{7856A55F-1A40-4BB2-B969-3A0B798F7334}</ProjectGuid>
        <Keyword>MFCProj</Keyword>
      </PropertyGroup>
      <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
      <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
        <ConfigurationType>Application</ConfigurationType>
        <PlatformToolset>v140</PlatformToolset>
        <UseOfMfc>Dynamic</UseOfMfc>
        <CharacterSet>MultiByte</CharacterSet>
      </PropertyGroup>
      <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
        <ConfigurationType>Application</ConfigurationType>
        <PlatformToolset>v140</PlatformToolset>
        <UseOfMfc>Dynamic</UseOfMfc>
        <CharacterSet>MultiByte</CharacterSet>
      </PropertyGroup>
      <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
      <ImportGroup Label="ExtensionSettings">
      </ImportGroup>
      <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
        <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
        <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
      </ImportGroup>
      <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
        <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
        <Import Project="$(VCTargetsPath)Microsoft.CPP.UpgradeFromVC60.props" />
      </ImportGroup>
      <PropertyGroup Label="UserMacros" />
      <PropertyGroup>
        <_ProjectFileVersion>12.0.30501.0</_ProjectFileVersion>
      </PropertyGroup>
      <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
        <OutDir>.\Release\</OutDir>
        <IntDir>.\Release\</IntDir>
        <LinkIncremental>false</LinkIncremental>
      </PropertyGroup>
      <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
        <OutDir>.\Debug\</OutDir>
        <IntDir>.\Debug\</IntDir>
        <LinkIncremental>true</LinkIncremental>
      </PropertyGroup>
      <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
        <Midl>
          <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
          <MkTypLibCompatible>true</MkTypLibCompatible>
          <SuppressStartupBanner>true</SuppressStartupBanner>
          <TargetEnvironment>Win32</TargetEnvironment>
          <TypeLibraryName>.\Release/ShiftN.tlb</TypeLibraryName>
          <HeaderFileName />
        </Midl>
        <ClCompile>
          <Optimization>MaxSpeed</Optimization>
          <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
          <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_BIND_TO_CURRENT_VCLIBS_VERSION=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
          <StringPooling>true</StringPooling>
          <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
          <FunctionLevelLinking>true</FunctionLevelLinking>
          <RuntimeTypeInfo>true</RuntimeTypeInfo>
          <PrecompiledHeader>Use</PrecompiledHeader>
          <PrecompiledHeaderFile>stdafx.h</PrecompiledHeaderFile>
          <PrecompiledHeaderOutputFile>.\Release/ShiftN.pch</PrecompiledHeaderOutputFile>
          <AssemblerListingLocation>.\Release/</AssemblerListingLocation>
          <ObjectFileName>.\Release/</ObjectFileName>
          <ProgramDataBaseFileName>.\Release/</ProgramDataBaseFileName>
          <WarningLevel>Level3</WarningLevel>
          <SuppressStartupBanner>true</SuppressStartupBanner>
        </ClCompile>
        <ResourceCompile>
          <PreprocessorDefinitions>NDEBUG;AFX_RESOURCE_DLL;AFX_TARG_NEU;%(PreprocessorDefinitions)</PreprocessorDefinitions>
          <Culture>0x0407</Culture>
        </ResourceCompile>
        <Link>
          <AdditionalDependencies>htmlhelp.lib;libtiff/libtiff/libtiff.lib;%(AdditionalDependencies)</AdditionalDependencies>
          <OutputFile>.\Release/ShiftN.exe</OutputFile>
          <SuppressStartupBanner>true</SuppressStartupBanner>
          <ProgramDatabaseFile>.\Release/ShiftN.pdb</ProgramDatabaseFile>
          <SubSystem>Windows</SubSystem>
          <RandomizedBaseAddress>false</RandomizedBaseAddress>
          <DataExecutionPrevention />
          <TargetMachine>MachineX86</TargetMachine>
        </Link>
        <Bscmake>
          <SuppressStartupBanner>true</SuppressStartupBanner>
          <OutputFile>.\Release/ShiftN.bsc</OutputFile>
        </Bscmake>
      </ItemDefinitionGroup>
      <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
        <Midl>
          <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
          <MkTypLibCompatible>true</MkTypLibCompatible>
          <SuppressStartupBanner>true</SuppressStartupBanner>
          <TargetEnvironment>Win32</TargetEnvironment>
          <TypeLibraryName>.\Debug/ShiftN.tlb</TypeLibraryName>
          <HeaderFileName />
        </Midl>
        <ClCompile>
          <Optimization>Disabled</Optimization>
          <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
          <MinimalRebuild>true</MinimalRebuild>
          <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
          <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
          <RuntimeTypeInfo>true</RuntimeTypeInfo>
          <PrecompiledHeader>Use</PrecompiledHeader>
          <PrecompiledHeaderFile>stdafx.h</PrecompiledHeaderFile>
          <PrecompiledHeaderOutputFile>.\Debug/ShiftN.pch</PrecompiledHeaderOutputFile>
          <AssemblerListingLocation>.\Debug/</AssemblerListingLocation>
          <ObjectFileName>.\Debug/</ObjectFileName>
          <ProgramDataBaseFileName>.\Debug/</ProgramDataBaseFileName>
          <WarningLevel>Level3</WarningLevel>
          <SuppressStartupBanner>true</SuppressStartupBanner>
          <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
        </ClCompile>
        <ResourceCompile>
          <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
          <Culture>0x0407</Culture>
        </ResourceCompile>
        <Link>
          <AdditionalDependencies>htmlhelp.lib;libtiff_debug/libtiff/libtiff/libtiff.lib;%(AdditionalDependencies)</AdditionalDependencies>
          <OutputFile>.\Debug/ShiftN.exe</OutputFile>
          <SuppressStartupBanner>true</SuppressStartupBanner>
          <GenerateDebugInformation>true</GenerateDebugInformation>
          <ProgramDatabaseFile>.\Debug/ShiftN.pdb</ProgramDatabaseFile>
          <SubSystem>Windows</SubSystem>
          <RandomizedBaseAddress>false</RandomizedBaseAddress>
          <DataExecutionPrevention />
          <TargetMachine>MachineX86</TargetMachine>
        </Link>
        <Bscmake>
          <SuppressStartupBanner>true</SuppressStartupBanner>
          <OutputFile>.\Debug/ShiftN.bsc</OutputFile>
        </Bscmake>
      </ItemDefinitionGroup>
      <ItemGroup>
        <ClCompile Include="abspDlg.cpp" />
        <ClCompile Include="AdjustDlg.cpp" />
        <ClCompile Include="DarstDlg.cpp" />
        <ClCompile Include="exif.cpp">
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
          </PrecompiledHeader>
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
          </PrecompiledHeader>
        </ClCompile>
        <ClCompile Include="gpsinfo.cpp">
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
          </PrecompiledHeader>
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
          </PrecompiledHeader>
        </ClCompile>
        <ClCompile Include="Hinweise.cpp" />
        <ClCompile Include="iptc.cpp" />
        <ClCompile Include="jpgfile.cpp">
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
          </PrecompiledHeader>
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
          </PrecompiledHeader>
        </ClCompile>
        <ClCompile Include="Keine_Ergebnisse.cpp" />
        <ClCompile Include="Kein_Bild.cpp" />
        <ClCompile Include="Ladefehler_Dialog.cpp" />
        <ClCompile Include="MainFrm.cpp" />
        <ClCompile Include="makernote.cpp">
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
          </PrecompiledHeader>
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
          </PrecompiledHeader>
        </ClCompile>
        <ClCompile Include="myglob.cpp">
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
          </PrecompiledHeader>
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
          </PrecompiledHeader>
        </ClCompile>
        <ClCompile Include="ParamDlg.cpp" />
        <ClCompile Include="ProgDlg.cpp" />
        <ClCompile Include="SchaltflDlg.cpp" />
        <ClCompile Include="ShiftN.cpp" />
        <ClCompile Include="ShiftNDoc.cpp" />
        <ClCompile Include="ShiftNView.cpp" />
        <ClCompile Include="Splash.cpp" />
        <ClCompile Include="SprachDlg.cpp" />
        <ClCompile Include="StdAfx.cpp">
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
          <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
        </ClCompile>
        <ClCompile Include="Toolbar.cpp" />
      </ItemGroup>
      <ItemGroup>
        <ResourceCompile Include="ShiftN.rc">
          <DeploymentContent>false</DeploymentContent>
          <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</ExcludedFromBuild>
          <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</ExcludedFromBuild>
          <DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</DeploymentContent>
          <DeploymentContent Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</DeploymentContent>
        </ResourceCompile>
      </ItemGroup>
      <ItemGroup>
        <ClInclude Include="abspDlg.h" />
        <ClInclude Include="AdjustDlg.h" />
        <ClInclude Include="DarstDlg.h" />
        <ClInclude Include="Hinweise.h" />
        <ClInclude Include="jhead.h" />
        <ClInclude Include="Keine_Ergebnisse.h" />
        <ClInclude Include="Kein_Bild.h" />
        <ClInclude Include="Ladefehler_Dialog.h" />
        <ClInclude Include="MainFrm.h" />
        <ClInclude Include="mystack.h" />
        <ClInclude Include="ParamDlg.h" />
        <ClInclude Include="ProgDlg.h" />
        <ClInclude Include="resource.h" />
        <ClInclude Include="SchaltflDlg.h" />
        <ClInclude Include="ShiftN.h" />
        <ClInclude Include="ShiftNDoc.h" />
        <ClInclude Include="ShiftNView.h" />
        <ClInclude Include="Splash.h" />
        <ClInclude Include="SprachDlg.h" />
        <ClInclude Include="StdAfx.h" />
        <ClInclude Include="Toolbar.h" />
      </ItemGroup>
      <ItemGroup>
        <Image Include="res\idr_main.ico" />
        <Image Include="res\idr_shif.ico" />
        <Image Include="res\ShiftN.ico" />
        <Image Include="res\ShiftNDoc.ico" />
        <Image Include="res\toolbar1.bmp" />
        <Image Include="Splsh16.bmp" />
      </ItemGroup>
      <ItemGroup>
        <None Include="res\ShiftN.rc2" />
      </ItemGroup>
      <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
      <ImportGroup Label="ExtensionTargets">
      </ImportGroup>
      <ProjectExtensions>
        <VisualStudio>
          <UserProperties RESOURCE_FILE="ShiftN.rc" />
        </VisualStudio>
      </ProjectExtensions>
    </Project>
    Fichier ShiftN.vcproj

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    <?xml version="1.0" encoding="Windows-1252"?>
    <VisualStudioProject
    	ProjectType="Visual C++"
    	Version="9,00"
    	Name="ShiftN"
    	ProjectGUID="{7856A55F-1A40-4BB2-B969-3A0B798F7334}"
    	Keyword="MFCProj"
    	TargetFrameworkVersion="0"
    	>
    	<Platforms>
    		<Platform
    			Name="Win32"
    		/>
    	</Platforms>
    	<ToolFiles>
    	</ToolFiles>
    	<Configurations>
    		<Configuration
    			Name="Release|Win32"
    			OutputDirectory=".\Release"
    			IntermediateDirectory=".\Release"
    			ConfigurationType="1"
    			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
    			UseOfMFC="2"
    			ATLMinimizesCRunTimeLibraryUsage="false"
    			CharacterSet="2"
    			>
    			<Tool
    				Name="VCPreBuildEventTool"
    			/>
    			<Tool
    				Name="VCCustomBuildTool"
    			/>
    			<Tool
    				Name="VCXMLDataGeneratorTool"
    			/>
    			<Tool
    				Name="VCWebServiceProxyGeneratorTool"
    			/>
    			<Tool
    				Name="VCMIDLTool"
    				PreprocessorDefinitions="NDEBUG"
    				MkTypLibCompatible="true"
    				SuppressStartupBanner="true"
    				TargetEnvironment="1"
    				TypeLibraryName=".\Release/ShiftN.tlb"
    				HeaderFileName=""
    			/>
    			<Tool
    				Name="VCCLCompilerTool"
    				Optimization="2"
    				InlineFunctionExpansion="1"
    				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;_BIND_TO_CURRENT_VCLIBS_VERSION=1"
    				StringPooling="true"
    				RuntimeLibrary="2"
    				EnableFunctionLevelLinking="true"
    				RuntimeTypeInfo="true"
    				UsePrecompiledHeader="2"
    				PrecompiledHeaderThrough="stdafx.h"
    				PrecompiledHeaderFile=".\Release/ShiftN.pch"
    				AssemblerListingLocation=".\Release/"
    				ObjectFile=".\Release/"
    				ProgramDataBaseFileName=".\Release/"
    				WarningLevel="3"
    				SuppressStartupBanner="true"
    			/>
    			<Tool
    				Name="VCManagedResourceCompilerTool"
    			/>
    			<Tool
    				Name="VCResourceCompilerTool"
    				PreprocessorDefinitions="NDEBUG;AFX_RESOURCE_DLL;AFX_TARG_NEU"
    				Culture="1031"
    			/>
    			<Tool
    				Name="VCPreLinkEventTool"
    			/>
    			<Tool
    				Name="VCLinkerTool"
    				AdditionalDependencies="htmlhelp.lib libtiff/libtiff/libtiff.lib"
    				OutputFile=".\Release/ShiftN.exe"
    				LinkIncremental="1"
    				SuppressStartupBanner="true"
    				ProgramDatabaseFile=".\Release/ShiftN.pdb"
    				SubSystem="2"
    				RandomizedBaseAddress="1"
    				DataExecutionPrevention="0"
    				TargetMachine="1"
    			/>
    			<Tool
    				Name="VCALinkTool"
    			/>
    			<Tool
    				Name="VCManifestTool"
    			/>
    			<Tool
    				Name="VCXDCMakeTool"
    			/>
    			<Tool
    				Name="VCBscMakeTool"
    				SuppressStartupBanner="true"
    				OutputFile=".\Release/ShiftN.bsc"
    			/>
    			<Tool
    				Name="VCFxCopTool"
    			/>
    			<Tool
    				Name="VCAppVerifierTool"
    			/>
    			<Tool
    				Name="VCPostBuildEventTool"
    			/>
    		</Configuration>
    		<Configuration
    			Name="Debug|Win32"
    			OutputDirectory=".\Debug"
    			IntermediateDirectory=".\Debug"
    			ConfigurationType="1"
    			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
    			UseOfMFC="2"
    			ATLMinimizesCRunTimeLibraryUsage="false"
    			CharacterSet="2"
    			>
    			<Tool
    				Name="VCPreBuildEventTool"
    			/>
    			<Tool
    				Name="VCCustomBuildTool"
    			/>
    			<Tool
    				Name="VCXMLDataGeneratorTool"
    			/>
    			<Tool
    				Name="VCWebServiceProxyGeneratorTool"
    			/>
    			<Tool
    				Name="VCMIDLTool"
    				PreprocessorDefinitions="_DEBUG"
    				MkTypLibCompatible="true"
    				SuppressStartupBanner="true"
    				TargetEnvironment="1"
    				TypeLibraryName=".\Debug/ShiftN.tlb"
    				HeaderFileName=""
    			/>
    			<Tool
    				Name="VCCLCompilerTool"
    				Optimization="0"
    				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS"
    				MinimalRebuild="true"
    				BasicRuntimeChecks="3"
    				RuntimeLibrary="3"
    				RuntimeTypeInfo="true"
    				UsePrecompiledHeader="2"
    				PrecompiledHeaderThrough="stdafx.h"
    				PrecompiledHeaderFile=".\Debug/ShiftN.pch"
    				AssemblerListingLocation=".\Debug/"
    				ObjectFile=".\Debug/"
    				ProgramDataBaseFileName=".\Debug/"
    				WarningLevel="3"
    				SuppressStartupBanner="true"
    				DebugInformationFormat="4"
    			/>
    			<Tool
    				Name="VCManagedResourceCompilerTool"
    			/>
    			<Tool
    				Name="VCResourceCompilerTool"
    				PreprocessorDefinitions="_DEBUG"
    				Culture="1031"
    			/>
    			<Tool
    				Name="VCPreLinkEventTool"
    			/>
    			<Tool
    				Name="VCLinkerTool"
    				AdditionalDependencies="htmlhelp.lib libtiff_debug/libtiff/libtiff/libtiff.lib"
    				OutputFile=".\Debug/ShiftN.exe"
    				LinkIncremental="2"
    				SuppressStartupBanner="true"
    				GenerateDebugInformation="true"
    				ProgramDatabaseFile=".\Debug/ShiftN.pdb"
    				SubSystem="2"
    				RandomizedBaseAddress="1"
    				DataExecutionPrevention="0"
    				TargetMachine="1"
    			/>
    			<Tool
    				Name="VCALinkTool"
    			/>
    			<Tool
    				Name="VCManifestTool"
    			/>
    			<Tool
    				Name="VCXDCMakeTool"
    			/>
    			<Tool
    				Name="VCBscMakeTool"
    				SuppressStartupBanner="true"
    				OutputFile=".\Debug/ShiftN.bsc"
    			/>
    			<Tool
    				Name="VCFxCopTool"
    			/>
    			<Tool
    				Name="VCAppVerifierTool"
    			/>
    			<Tool
    				Name="VCPostBuildEventTool"
    			/>
    		</Configuration>
    	</Configurations>
    	<References>
    	</References>
    	<Files>
    		<Filter
    			Name="Quellcodedateien"
    			Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
    			>
    			<File
    				RelativePath="abspDlg.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="AdjustDlg.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="DarstDlg.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="exif.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="gpsinfo.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="Hinweise.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath=".\iptc.cpp"
    				>
    			</File>
    			<File
    				RelativePath="jpgfile.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="Kein_Bild.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="Keine_Ergebnisse.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="Ladefehler_Dialog.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="MainFrm.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="makernote.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="myglob.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="0"
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="ParamDlg.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="ProgDlg.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="SchaltflDlg.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="ShiftN.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="ShiftN.rc"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCResourceCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCResourceCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="ShiftNDoc.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="ShiftNView.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="Splash.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="SprachDlg.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="StdAfx.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="1"
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    						UsePrecompiledHeader="1"
    					/>
    				</FileConfiguration>
    			</File>
    			<File
    				RelativePath="Toolbar.cpp"
    				>
    				<FileConfiguration
    					Name="Release|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    				<FileConfiguration
    					Name="Debug|Win32"
    					>
    					<Tool
    						Name="VCCLCompilerTool"
    						PreprocessorDefinitions=""
    					/>
    				</FileConfiguration>
    			</File>
    		</Filter>
    		<Filter
    			Name="Header-Dateien"
    			Filter="h;hpp;hxx;hm;inl"
    			>
    			<File
    				RelativePath="abspDlg.h"
    				>
    			</File>
    			<File
    				RelativePath="AdjustDlg.h"
    				>
    			</File>
    			<File
    				RelativePath="DarstDlg.h"
    				>
    			</File>
    			<File
    				RelativePath="Hinweise.h"
    				>
    			</File>
    			<File
    				RelativePath="jhead.h"
    				>
    			</File>
    			<File
    				RelativePath="Kein_Bild.h"
    				>
    			</File>
    			<File
    				RelativePath="Keine_Ergebnisse.h"
    				>
    			</File>
    			<File
    				RelativePath="Ladefehler_Dialog.h"
    				>
    			</File>
    			<File
    				RelativePath="MainFrm.h"
    				>
    			</File>
    			<File
    				RelativePath="mystack.h"
    				>
    			</File>
    			<File
    				RelativePath="ParamDlg.h"
    				>
    			</File>
    			<File
    				RelativePath="ProgDlg.h"
    				>
    			</File>
    			<File
    				RelativePath="resource.h"
    				>
    			</File>
    			<File
    				RelativePath="SchaltflDlg.h"
    				>
    			</File>
    			<File
    				RelativePath="ShiftN.h"
    				>
    			</File>
    			<File
    				RelativePath="ShiftNDoc.h"
    				>
    			</File>
    			<File
    				RelativePath="ShiftNView.h"
    				>
    			</File>
    			<File
    				RelativePath="Splash.h"
    				>
    			</File>
    			<File
    				RelativePath="SprachDlg.h"
    				>
    			</File>
    			<File
    				RelativePath="StdAfx.h"
    				>
    			</File>
    			<File
    				RelativePath="Toolbar.h"
    				>
    			</File>
    		</Filter>
    		<Filter
    			Name="Ressourcendateien"
    			Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
    			>
    			<File
    				RelativePath="res\idr_main.ico"
    				>
    			</File>
    			<File
    				RelativePath="res\idr_shif.ico"
    				>
    			</File>
    			<File
    				RelativePath="res\ShiftN.ico"
    				>
    			</File>
    			<File
    				RelativePath="res\ShiftN.rc2"
    				>
    			</File>
    			<File
    				RelativePath="res\ShiftNDoc.ico"
    				>
    			</File>
    			<File
    				RelativePath="Splsh16.bmp"
    				>
    			</File>
    			<File
    				RelativePath="res\toolbar1.bmp"
    				>
    			</File>
    		</Filter>
    	</Files>
    	<Globals>
    		<Global
    			Name="RESOURCE_FILE"
    			Value="ShiftN.rc"
    		/>
    	</Globals>
    </VisualStudioProject>
    Fichier ShiftN.vcxproj.filters


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    <?xml version="1.0" encoding="utf-8"?>
    <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      <ItemGroup>
        <Filter Include="Quellcodedateien">
          <UniqueIdentifier>{a7600e43-0add-4c70-ad3a-c3f7f0c7b2ef}</UniqueIdentifier>
          <Extensions>cpp;c;cxx;rc;def;r;odl;idl;hpj;bat</Extensions>
        </Filter>
        <Filter Include="Header-Dateien">
          <UniqueIdentifier>{a95baea3-af75-4dc1-8c1a-fdb45cc0077c}</UniqueIdentifier>
          <Extensions>h;hpp;hxx;hm;inl</Extensions>
        </Filter>
        <Filter Include="Ressourcendateien">
          <UniqueIdentifier>{108ba4b9-975d-483a-8044-2f33bf009dc9}</UniqueIdentifier>
          <Extensions>ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions>
        </Filter>
      </ItemGroup>
      <ItemGroup>
        <ClCompile Include="abspDlg.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="AdjustDlg.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="DarstDlg.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="exif.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="gpsinfo.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="Hinweise.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="iptc.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="jpgfile.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="Kein_Bild.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="Keine_Ergebnisse.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="Ladefehler_Dialog.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="MainFrm.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="makernote.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="myglob.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="ParamDlg.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="ProgDlg.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="SchaltflDlg.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="ShiftN.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="ShiftNDoc.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="ShiftNView.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="Splash.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="SprachDlg.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="StdAfx.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
        <ClCompile Include="Toolbar.cpp">
          <Filter>Quellcodedateien</Filter>
        </ClCompile>
      </ItemGroup>
      <ItemGroup>
        <ClInclude Include="abspDlg.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="AdjustDlg.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="DarstDlg.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="Hinweise.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="jhead.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="Kein_Bild.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="Keine_Ergebnisse.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="Ladefehler_Dialog.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="MainFrm.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="mystack.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="ParamDlg.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="ProgDlg.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="resource.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="SchaltflDlg.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="ShiftN.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="ShiftNDoc.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="ShiftNView.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="Splash.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="SprachDlg.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="StdAfx.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
        <ClInclude Include="Toolbar.h">
          <Filter>Header-Dateien</Filter>
        </ClInclude>
      </ItemGroup>
      <ItemGroup>
        <Image Include="res\idr_main.ico">
          <Filter>Ressourcendateien</Filter>
        </Image>
        <Image Include="res\idr_shif.ico">
          <Filter>Ressourcendateien</Filter>
        </Image>
        <Image Include="res\ShiftN.ico">
          <Filter>Ressourcendateien</Filter>
        </Image>
        <Image Include="res\ShiftNDoc.ico">
          <Filter>Ressourcendateien</Filter>
        </Image>
        <Image Include="Splsh16.bmp">
          <Filter>Ressourcendateien</Filter>
        </Image>
        <Image Include="res\toolbar1.bmp">
          <Filter>Ressourcendateien</Filter>
        </Image>
      </ItemGroup>
      <ItemGroup>
        <None Include="res\ShiftN.rc2">
          <Filter>Ressourcendateien</Filter>
        </None>
      </ItemGroup>
      <ItemGroup>
        <ResourceCompile Include="ShiftN.rc">
          <Filter>Ressourcendateien</Filter>
        </ResourceCompile>
      </ItemGroup>
    </Project>
    Quand deux personnes échangent un euro, chacun repart avec un euro.
    Quand deux personnes échangent une idée, chacun repart avec deux idées.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 1
    Dernier message: 22/01/2020, 13h21
  2. Réponses: 5
    Dernier message: 03/02/2015, 15h18
  3. Réponses: 5
    Dernier message: 20/09/2014, 07h36
  4. programme fonctionne en debug mais pas en release ?
    Par membreComplexe12 dans le forum C++
    Réponses: 20
    Dernier message: 16/05/2012, 11h52
  5. Fonctionne en Debug mais pas en Release
    Par Baud10 dans le forum MFC
    Réponses: 23
    Dernier message: 04/02/2008, 15h17

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo