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

Visual C++ Discussion :

probleme classe apres ajout de variable


Sujet :

Visual C++

  1. #1
    Membre régulier
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mai 2006
    Messages
    350
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : Industrie

    Informations forums :
    Inscription : Mai 2006
    Messages : 350
    Points : 121
    Points
    121
    Par défaut probleme classe apres ajout de variable
    Voila je suis en train de refaire tout mon projet, mais avec le classwizard (au maximum).

    Une fois le projet de base de créer, j'ajoute des variables membre de la classe.
    Apres l'ajout d'une variable toute bête, le programme fais des truc bizarre (juste en la déclarant, je ne l'utilise même pas).
    Puis en en ajoutant une de plus, le programme me fait une erreur d'exécution.

    D'ou cela peut il venir.

  2. #2
    Expert éminent sénior
    Avatar de Médinoc
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2005
    Messages
    27 382
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2005
    Messages : 27 382
    Points : 41 588
    Points
    41 588
    Par défaut
    Je peux pas vraiment te dire d'ici, ma boule de cristal est cassée...


    Peut-être que si on avait une ou deux infos sur la variable en question, et pourquoi pas (soyons fous!) un petit bout de code...

  3. #3
    Membre régulier
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mai 2006
    Messages
    350
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : Industrie

    Informations forums :
    Inscription : Mai 2006
    Messages : 350
    Points : 121
    Points
    121
    Par défaut
    je ne voulais pas surcharger le topic pour rien si justement il y avait un truc evident a faire. Voici le programme

    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
    // AutoCollimationV1_00Dlg.h : header file
    //
    //{{AFX_INCLUDES()
    #include "cvdisplay.h"
    #include "cvimage.h"
    //}}AFX_INCLUDES
    #include "icvcImg.h"
    #include "icvcDisp.h"
    #include "icvcDriver.h"
    #include "icvcUtilities.h"
    #include "Histogramme.h"
    #include "ACMath.h"
    
    #if !defined(AFX_AUTOCOLLIMATIONV1_00DLG_H__EB4444D8_1066_43D4_AE45_09C0A5AD21F8__INCLUDED_)
    #define AFX_AUTOCOLLIMATIONV1_00DLG_H__EB4444D8_1066_43D4_AE45_09C0A5AD21F8__INCLUDED_
    
    #if _MSC_VER >= 1000
    #pragma once
    #endif // _MSC_VER >= 1000
    
    /////////////////////////////////////////////////////////////////////////////
    // CAutoCollimationV1_00Dlg dialog
    
    class CAutoCollimationV1_00Dlg : public CDialog
    {
    
    // Construction
    public:
      virtual BOOL PreTranslateMessage(MSG* pMsg);
    	CAutoCollimationV1_00Dlg(CWnd* pParent = NULL);	// standard constructor
    
    // Dialog Data
    	//{{AFX_DATA(CAutoCollimationV1_00Dlg)
    	enum { IDD = IDD_AUTOCOLLIMATIONV1_00_DIALOG };
    	BOOL	m_bGrab;
    	CCVdisplay	m_cvDisp;
    	CCVimage	m_cvImg;
    
    	long	m_Pas;
    	long	m_X_Debut;
    	long	m_X_Fin;
    	CString	m_Resultat;
    	//}}AFX_DATA
    
    	// ClassWizard generated virtual function overrides
    	//{{AFX_VIRTUAL(CAutoCollimationV1_00Dlg)
    	protected:
    	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
    	//}}AFX_VIRTUAL
    
    // Implementation
    // Variables
    private:
    
    
    
    protected:
    	HICON			m_hIcon;
    	CToolTipCtrl	m_tooltip;
    	IMG				m_Img;			//Image chargé par la fenetre.
      
      void          SetupUI (void);
      
    	// Generated message map functions
    	//{{AFX_MSG(CAutoCollimationV1_00Dlg)
    	virtual BOOL OnInitDialog();
    	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
    	afx_msg void OnPaint();
    	afx_msg HCURSOR OnQueryDragIcon();
    	afx_msg void OnBOpen();
    	afx_msg void OnBSave();
    	afx_msg void OnCGrab();
    	afx_msg void OnImageSnapedCvImg();
    	afx_msg void OnClose();
    	DECLARE_EVENTSINK_MAP()
    	//}}AFX_MSG
    	DECLARE_MESSAGE_MAP()
    };
    
    //{{AFX_INSERT_LOCATION}}
    // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
    
    #endif // !defined(AFX_AUTOCOLLIMATIONV1_00DLG_H__EB4444D8_1066_43D4_AE45_09C0A5AD21F8__INCLUDED_)
    et le .cpp
    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
    // AutoCollimationV1_00Dlg.cpp : implementation file
    //
     
    #include "stdafx.h"
    #include "AutoCollimationV1_00.h"
    #include "AutoCollimationV1_00Dlg.h"
     
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #undef THIS_FILE
    static char THIS_FILE[] = __FILE__;
    #endif
     
    // link image manger lib's (LIB file directories must be set properly)
    #pragma comment (lib, "cvcimg.lib")
    #pragma comment (lib, "cvcutilities.lib")
    #pragma comment (lib, "cvcdriver.lib")
     
     
     
    /////////////////////////////////////////////////////////////////////////////
    // CAutoCollimationV1_00Dlg dialog
     
    CAutoCollimationV1_00Dlg::CAutoCollimationV1_00Dlg(CWnd* pParent /*=NULL*/)
    	: CDialog(CAutoCollimationV1_00Dlg::IDD, pParent)
    {
    	//{{AFX_DATA_INIT(CAutoCollimationV1_00Dlg)
    	m_bGrab = FALSE;
    	m_Pas = 1;
    	m_X_Debut = 0;
    	m_X_Fin = 0;
    	m_Resultat = _T("");
    	//}}AFX_DATA_INIT
    	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
    	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
    }
     
    void CAutoCollimationV1_00Dlg::DoDataExchange(CDataExchange* pDX)
    {
    	CDialog::DoDataExchange(pDX);
    	//{{AFX_DATA_MAP(CAutoCollimationV1_00Dlg)
    //	DDX_Control(pDX, IDC_P_HISTOGRAMME, m_Histogramme);
    	DDX_Check(pDX, IDC_C_GRAB, m_bGrab);
    	DDX_Control(pDX, IDC_CV_DISP, m_cvDisp);
    	DDX_Control(pDX, IDC_CV_IMG, m_cvImg);
    	DDX_Text(pDX, IDC_E_PAS, m_Pas);
    	DDX_Text(pDX, IDC_E_X_DEBUT, m_X_Debut);
    	DDX_Text(pDX, IDC_E_RESULTAT, m_Resultat);
    	DDX_Text(pDX, IDC_E_X_FIN, m_X_Fin);
    	//}}AFX_DATA_MAP
    }
     
    BEGIN_MESSAGE_MAP(CAutoCollimationV1_00Dlg, CDialog)
    	//{{AFX_MSG_MAP(CAutoCollimationV1_00Dlg)
    	ON_WM_SYSCOMMAND()
    	ON_WM_PAINT()
    	ON_WM_QUERYDRAGICON()
    	ON_BN_CLICKED(IDC_B_OPEN, OnBOpen)
    	ON_BN_CLICKED(IDC_B_SAVE, OnBSave)
    	ON_BN_CLICKED(IDC_C_GRAB, OnCGrab)
    	ON_WM_CLOSE()
    	//}}AFX_MSG_MAP
    END_MESSAGE_MAP()
     
    /////////////////////////////////////////////////////////////////////////////
    // CAutoCollimationV1_00Dlg message handlers
     
    BOOL CAutoCollimationV1_00Dlg::OnInitDialog()
    {
    	CDialog::OnInitDialog();
    	Beep(1000,100);
     
    	// Add "About..." menu item to system menu.
     
    	// IDM_ABOUTBOX must be in the system command range.
    	ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
    	ASSERT(IDM_ABOUTBOX < 0xF000);
     
    	CMenu* pSysMenu = GetSystemMenu(FALSE);
    	if (pSysMenu != NULL)
    	{
    		CString strAboutMenu;
    		strAboutMenu.LoadString(IDS_ABOUTBOX);
    		if (!strAboutMenu.IsEmpty())
    		{
    			pSysMenu->AppendMenu(MF_SEPARATOR);
    			pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
    		}
    	}
     
    	// Set the icon for this dialog.  The framework does this automatically
    	//  when the application's main window is not a dialog
    	SetIcon(m_hIcon, TRUE);			// Set big icon
    	SetIcon(m_hIcon, FALSE);		// Set small icon
     
      // Create the ToolTip control.
    	m_tooltip.Create(this);
    	m_tooltip.Activate(TRUE);
      // assign tools to controls
    	m_tooltip.AddTool(GetDlgItem(IDC_B_OPEN), "Open an Image or Driver");
      m_tooltip.AddTool(GetDlgItem(IDC_B_SAVE), "Save the Image");
      m_tooltip.AddTool(GetDlgItem(IDC_C_GRAB), "Turn grab on and off");
     
      // TODO: Use one of the following forms to add controls:
    	// m_tooltip.AddTool(GetDlgItem(IDC_<name>), <string-table-id>);
    	// m_tooltip.AddTool(GetDlgItem(IDC_<name>), "<text>");
      // Common Vision Blox initialization
      m_Img = NULL;
      // UI initialization
      SetupUI ();
      // enable DirectDraw
      m_cvDisp.SetDirectDrawEnabled (TRUE);
      // enable scrollbars
      m_cvDisp.SetScrollBars (TRUE);
     
      // TODO: Add extra initialization here
     
    	return TRUE;  // return TRUE  unless you set the focus to a control
    }
     
    void CAutoCollimationV1_00Dlg::OnSysCommand(UINT nID, LPARAM lParam)
    {
    	if ((nID & 0xFFF0) == IDM_ABOUTBOX)
    	{
    		CAboutDlg dlgAbout;
    		dlgAbout.DoModal();
    	}
    	else
    	{
    		CDialog::OnSysCommand(nID, lParam);
    	}
    }
     
    // If you add a minimize button to your dialog, you will need the code below
    //  to draw the icon.  For MFC applications using the document/view model,
    //  this is automatically done for you by the framework.
     
    void CAutoCollimationV1_00Dlg::OnPaint() 
    {
    	CString st;
    	if (IsIconic())
    	{
    		CPaintDC dc(this); // device context for painting
     
    		SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
     
    		// Center icon in client rectangle
    		int cxIcon = GetSystemMetrics(SM_CXICON);
    		int cyIcon = GetSystemMetrics(SM_CYICON);
    		CRect rect;
    		GetClientRect(&rect);
    		int x = (rect.Width() - cxIcon + 1) / 2;
    		int y = (rect.Height() - cyIcon + 1) / 2;
     
    		// Draw the icon
    		dc.DrawIcon(x, y, m_hIcon);
    	}
    	else
    	{
    		CDialog::OnPaint();
    	}
    		st.Format("",XDebut);
    		SetDlgItemText(IDC_E_X_DEBUT,st);
    		st.Format("",XFin);
    		SetDlgItemText(IDC_E_X_FIN,st);
    		st.Format("%ld",m_Pas);
    		SetDlgItemText(IDC_E_PAS,st);
    }
     
    // The system calls this to obtain the cursor to display while the user drags
    //  the minimized window.
    HCURSOR CAutoCollimationV1_00Dlg::OnQueryDragIcon()
    {
    	return (HCURSOR) m_hIcon;
    }
     
    BOOL CAutoCollimationV1_00Dlg::PreTranslateMessage(MSG* pMsg)
    {
    	// CG: The following block was added by the ToolTips component.
    	{
    		// Let the ToolTip process this message.
    		m_tooltip.RelayEvent(pMsg);
    	}
    	return CDialog::PreTranslateMessage(pMsg);	// CG: This was added by the ToolTips component.
    }
     
    BEGIN_EVENTSINK_MAP(CAutoCollimationV1_00Dlg, CDialog)
        //{{AFX_EVENTSINK_MAP(CAutoCollimationV1_00Dlg)
    	ON_EVENT(CAutoCollimationV1_00Dlg, IDC_CV_IMG, 5 /* ImageSnaped */, OnImageSnapedCvImg, VTS_NONE)
    	//}}AFX_EVENTSINK_MAP
    END_EVENTSINK_MAP()
     
    void CAutoCollimationV1_00Dlg::SetupUI (void)
    {
      CWnd *pWnd;
     
      // save image handle
      m_Img = (IMG) m_cvImg.GetImage();
      // set display image
      m_cvDisp.SetImage ((long) m_Img);
     
    ...
     
      // TODO: Add your extra control notification handler code here
     
    }
     
    void CAutoCollimationV1_00Dlg::OnClose() 
    {
    	// TODO: Add your message handler code here and/or call default
     
    	CDialog::OnClose();
    }
    Avec les 4 variable, il ne me fais plus d'erreur, mais il n'ouvre pas l'interface (et il ne passe pas du coup dans le onclose).

  4. #4
    Membre régulier
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mai 2006
    Messages
    350
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : Industrie

    Informations forums :
    Inscription : Mai 2006
    Messages : 350
    Points : 121
    Points
    121
    Par défaut
    il me dis ca au moment du débuggage



    L'erreur viendrait de la :

    CAutoCollimationV1_00Dlg dlg;
    m_pMainWnd = &dlg;

  5. #5
    Expert éminent sénior
    Avatar de Médinoc
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2005
    Messages
    27 382
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2005
    Messages : 27 382
    Points : 41 588
    Points
    41 588
    Par défaut
    En fait, je m'intéressais surtout aux déclarations de variables et à DoDataExchange().

    Dis-moi, pourquoi as-tu quatre DDX_Text() alors que trois des variables concernées sont des entiers ?
    Edit: J'ai rien dit, la fonction est surchargée. Il faut chercher ailleurs.

    Tu devrais inspecter la Call Stack dans le debugger pour voir où se produit l'access violation exactement.

    Edit2:
    Tu as quelle version de Visual ?

  6. #6
    Membre régulier
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mai 2006
    Messages
    350
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : Industrie

    Informations forums :
    Inscription : Mai 2006
    Messages : 350
    Points : 121
    Points
    121
    Par défaut
    incomprehenssible, ca remarche.


    Le track back, c'est le truc en bas dans la partie de compil ?
    Je ne peux donc plus le mettre car ca marche.


    Si ca recommence, je revient vous voir avec l'erreur. Merci.

  7. #7
    Expert éminent sénior
    Avatar de Médinoc
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2005
    Messages
    27 382
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2005
    Messages : 27 382
    Points : 41 588
    Points
    41 588
    Par défaut
    La call stack, c'est une des informations que du as quand tu lances l'appli en débogage.
    Puisque tu n'as toujours pas précisé ta version de Visual:
    • Sous Visual 6, on lance le débogage avec Build->Start debug->Go (si je me souviens bien), le raccourci est F5 (au lieu de Ctrl-F5) et la call stack est une toute petite dropdown list.
    • Sous Visual 2005, on lance le débogage avec Debug->Start debugging (raccouci F5 également) et la call stack est une des Debug Windows.

Discussions similaires

  1. ajouter une variable d'un classe java à une bdd
    Par cisco.nat dans le forum Général Java
    Réponses: 13
    Dernier message: 07/06/2013, 17h55
  2. Réponses: 3
    Dernier message: 21/05/2010, 11h17
  3. probleme cochez checkbox après transmission de variable
    Par nabilfaouzi dans le forum Langage
    Réponses: 3
    Dernier message: 24/11/2009, 16h18
  4. Réponses: 10
    Dernier message: 31/08/2009, 18h28
  5. Réponses: 1
    Dernier message: 14/02/2007, 18h08

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