| 
            Last change
 on this file since 28 was             18, checked in by marrucho, 12 years ago           | 
        
        
          | 
             
Rajout de la saisie de numP et numC 
 
           | 
        
        
          | 
            File size:
            911 bytes
           | 
        
      
      
| Line |   | 
|---|
| 1 | #include "stdafx.h"
 | 
|---|
| 2 | 
 | 
|---|
| 3 | #include "cxfel.h"
 | 
|---|
| 4 | //#include "mbxfel.h"
 | 
|---|
| 5 | 
 | 
|---|
| 6 | #using <mscorlib.dll>
 | 
|---|
| 7 | #using <System.dll>
 | 
|---|
| 8 | #using <System.Windows.Forms.dll>
 | 
|---|
| 9 | #using <System.Drawing.dll>//pour les controles bouton
 | 
|---|
| 10 | 
 | 
|---|
| 11 | using namespace System;
 | 
|---|
| 12 | using namespace System::ComponentModel;//contient des classes pour les composants et les contrôles
 | 
|---|
| 13 | using namespace System::Windows::Forms;//contient des classes dédiées à la génération des formulaires
 | 
|---|
| 14 | using namespace System::Drawing;//contient les classes Point et Size du bouton
 | 
|---|
| 15 | 
 | 
|---|
| 16 | 
 | 
|---|
| 17 | // This is the entry point for this application
 | 
|---|
| 18 | #ifdef _UNICODE
 | 
|---|
| 19 | int wmain(void)
 | 
|---|
| 20 | #else
 | 
|---|
| 21 | int main(void)
 | 
|---|
| 22 | #endif
 | 
|---|
| 23 | {
 | 
|---|
| 24 |     Console::WriteLine(S"Client XFEL");
 | 
|---|
| 25 |         
 | 
|---|
| 26 |     // Crée le formulaire.
 | 
|---|
| 27 |         // Application fait partie de l'espace de noms System::Windows::Forms
 | 
|---|
| 28 |         // et contient des méthodes statiques dont Run qui affiche le formulaire
 | 
|---|
| 29 |     Application::Run(new CppForm());
 | 
|---|
| 30 | 
 | 
|---|
| 31 |     return 0;
 | 
|---|
| 32 | }
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.