ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/app/VMM/win32/compocarte.cpp
Revision: 5
Committed: Tue Jun 12 20:26:34 2007 UTC (18 years, 2 months ago)
Original Path: magic/app/VMM/VMM/win32/compocarte.cpp
File size: 2077 byte(s)
Log Message:

File Contents

# User Rev Content
1 5 //------------------------------------------------------------
2     //------------------------------------------------------------
3     // MAGiC
4     // Jean Christophe Cuillière et Vincent FRANCOIS
5     // Département de Génie Mécanique - UQTR
6     //------------------------------------------------------------
7     // Le projet MAGIC est un projet de recherche du département
8     // de génie mécanique de l'Université du Québec à
9     // Trois Rivières
10     // Les librairies ne peuvent être utilisées sans l'accord
11     // des auteurs (contact : francois@uqtr.ca)
12     //------------------------------------------------------------
13     //------------------------------------------------------------
14     //
15     // compocarte.cpp
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 à 11H26
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23    
24    
25     #include "gestionversion.h"
26    
27     #include <vcl.h>
28     #pragma hdrstop
29    
30     #include "compocarte.h"
31     //---------------------------------------------------------------------------
32     #pragma package(smart_init)
33     #pragma resource "*.dfm"
34     Tcomc *comc;
35     //---------------------------------------------------------------------------
36     __fastcall Tcomc::Tcomc(TComponent* Owner)
37     : TForm(Owner)
38     {
39     }
40     //---------------------------------------------------------------------------
41     void __fastcall Tcomc::Button1Click(TObject *Sender)
42     {
43     etat=1;
44     if (Label2->Caption=="") etat=0;
45     Close();
46     }
47     //---------------------------------------------------------------------------
48     void __fastcall Tcomc::Button2Click(TObject *Sender)
49     {
50     etat=0;
51     Close();
52     }
53     //---------------------------------------------------------------------------
54     void __fastcall Tcomc::Button3Click(TObject *Sender)
55     {
56     if (OpenDialog1->Execute())
57     {
58     Label2->Caption=OpenDialog1->FileName;
59     }
60     }
61     //---------------------------------------------------------------------------
62