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 :

Générer un document Word/Excel - Visual C++/CLI


Sujet :

C++/CLI

  1. #1
    Nouveau membre du Club
    Homme Profil pro
    Informaticien - Profesionnal master application development
    Inscrit en
    Octobre 2011
    Messages
    47
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Informaticien - Profesionnal master application development
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2011
    Messages : 47
    Points : 32
    Points
    32
    Par défaut Générer un document Word/Excel - Visual C++/CLI
    Bonjour à tous,

    Je suis actuellement sur un projet en Visual C++/CLI et je dois maintenant générer un document Word et Excel à partir des données de mon soft.

    Seulement je ne trouve aucun exemple ni librairie effectuant cette tâche I/O pour du .docx, .xls.

    Sauriez-vous m'orienter ?

    Merci

    (Si le point à déjà été abordé merci de me reporter à la discussion, ça n'apparait pas sur les dix première pages)

  2. #2
    Expert éminent sénior
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2005
    Messages
    5 071
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Conseil

    Informations forums :
    Inscription : Février 2005
    Messages : 5 071
    Points : 12 116
    Points
    12 116
    Par défaut
    Voici le SDK officiel pour le format d'Office2007 et supérieur.
    http://www.microsoft.com/en-us/downl....aspx?id=30425

  3. #3
    Nouveau membre du Club
    Homme Profil pro
    Informaticien - Profesionnal master application development
    Inscrit en
    Octobre 2011
    Messages
    47
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Informaticien - Profesionnal master application development
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2011
    Messages : 47
    Points : 32
    Points
    32
    Par défaut
    Citation Envoyé par bacelar Voir le message
    Voici le SDK officiel pour le format d'Office2007 et supérieur.
    http://www.microsoft.com/en-us/downl....aspx?id=30425
    Merci, je vais tester cela aujourd'hui.

  4. #4
    Nouveau membre du Club
    Homme Profil pro
    Informaticien - Profesionnal master application development
    Inscrit en
    Octobre 2011
    Messages
    47
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Informaticien - Profesionnal master application development
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2011
    Messages : 47
    Points : 32
    Points
    32
    Par défaut
    Si quelqu'un à du code d'exemple en C++/CLI ?

  5. #5
    Expert éminent sénior
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2005
    Messages
    5 071
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Conseil

    Informations forums :
    Inscription : Février 2005
    Messages : 5 071
    Points : 12 116
    Points
    12 116
    Par défaut
    Il est normalement assez simple de faire une traduction C# C++/CLI, non ?

  6. #6
    Expert éminent sénior
    Avatar de Médinoc
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2005
    Messages
    27 369
    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 369
    Points : 41 519
    Points
    41 519
    Par défaut
    Très facile pour C# 2.0, un peu moins en C# 3.0 quand les expressions lambda apparaissent.
    SVP, pas de questions techniques par MP. Surtout si je ne vous ai jamais parlé avant.

    "Aw, come on, who would be so stupid as to insert a cast to make an error go away without actually fixing the error?"
    Apparently everyone.
    -- Raymond Chen.
    Traduction obligatoire: "Oh, voyons, qui serait assez stupide pour mettre un cast pour faire disparaitre un message d'erreur sans vraiment corriger l'erreur?" - Apparemment, tout le monde. -- Raymond Chen.

  7. #7
    Nouveau membre du Club
    Homme Profil pro
    Informaticien - Profesionnal master application development
    Inscrit en
    Octobre 2011
    Messages
    47
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Informaticien - Profesionnal master application development
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2011
    Messages : 47
    Points : 32
    Points
    32
    Par défaut
    Citation Envoyé par bacelar Voir le message
    Il est normalement assez simple de faire une traduction C# C++/CLI, non ?
    Simple je sais pas .. J'ai pas mal de difficulté à traduire cet exemple C# en C++/CLI.

    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
     
    // Take the data from a two-dimensional array and build a table at the 
    // end of the supplied document.
    public static void AddTable(string fileName, string[,] data)
    {
        using (var document = WordprocessingDocument.Open(fileName, true))
        {
     
            var doc = document.MainDocumentPart.Document;
     
            Table table = new Table();
     
            TableProperties props = new TableProperties(
                new TableBorders(
                new TopBorder
                {
                    Val = new EnumValue<BorderValues>(BorderValues.Single),
                    Size = 12
                },
                new BottomBorder
                {
                  Val = new EnumValue<BorderValues>(BorderValues.Single),
                  Size = 12
                },
                new LeftBorder
                {
                  Val = new EnumValue<BorderValues>(BorderValues.Single),
                  Size = 12
                },
                new RightBorder
                {
                  Val = new EnumValue<BorderValues>(BorderValues.Single),
                  Size = 12
                },
                new InsideHorizontalBorder
                {
                  Val = new EnumValue<BorderValues>(BorderValues.Single),
                  Size = 12
                },
                new InsideVerticalBorder
                {
                  Val = new EnumValue<BorderValues>(BorderValues.Single),
                  Size = 12
            }));
     
            table.AppendChild<TableProperties>(props);
     
            for (var i = 0; i <= data.GetUpperBound(0); i++)
            {
                var tr = new TableRow();
                for (var j = 0; j <= data.GetUpperBound(1); j++)
                {
                    var tc = new TableCell();
                    tc.Append(new Paragraph(new Run(new Text(data[i, j]))));
     
                    // Assume you want columns that are automatically sized.
                    tc.Append(new TableCellProperties(
                        new TableCellWidth { Type = TableWidthUnitValues.Auto }));
     
                    tr.Append(tc);
                }
                table.Append(tr);
            }
            doc.Body.Append(table);
            doc.Save();
        }
    }
    J'en ai fais ceci (je montre où le bloque pas l'entièreté du code):

    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
     
    // Create an empty table.
    				Table^ table = gcnew Table();
     
    				TopBorder^ topBorder = gcnew TopBorder();
    				BottomBorder^ bottomBorder = gcnew BottomBorder();
    				LeftBorder^ leftBorder = gcnew LeftBorder();
    				RightBorder^ rightBorder = gcnew RightBorder();
    				InsideHorizontalBorder^ insideHorizontalBorder = gcnew InsideHorizontalBorder();
     
    				//^ topBorder = gcnew TopBorder();
     
    				topBorder->Val = BorderValues::Dashed;
    				topBorder->Size = 24;
    				bottomBorder->Val = BorderValues::Dashed;
    				bottomBorder->Size = 24;
    				leftBorder->Val = BorderValues::Dashed;
    				leftBorder->Size = 24;
    				rightBorder->Val = BorderValues::Dashed;
    				rightBorder->Size = 24;
    				insideHorizontalBorder->Val = BorderValues::Dashed;
    				insideHorizontalBorder->Size = 24;
     
    				// Create a TableProperties object and specify its border information.
    				TableProperties^ tblProp = gcnew TableProperties(gcnew TableBorders(topBorder, bottomBorder, leftBorder, rightBorder, insideHorizontalBorder));
     
    				// Append the TableProperties object to the empty table.
    				table->AppendChild(tblProp);
    Le code se compile sans problème mais en revanche celà plante sur cette ligne :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    // Create a TableProperties object and specify its border information.
    TableProperties^ tblProp = gcnew TableProperties(gcnew TableBorders(topBorder, bottomBorder, leftBorder, rightBorder, insideHorizontalBorder));
    en me disant que :

    Une exception non gérée du type 'System.InvalidOperationException' s'est produite dans DocumentFormat.OpenXml.dll

    Informations supplémentaires*: Cannot insert the OpenXmlElement "newChild" because it is part of a tree.


    Voilà où j'en suis !

  8. #8
    Nouveau membre du Club
    Homme Profil pro
    Informaticien - Profesionnal master application development
    Inscrit en
    Octobre 2011
    Messages
    47
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Informaticien - Profesionnal master application development
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2011
    Messages : 47
    Points : 32
    Points
    32
    Par défaut
    J'en suis là. Le code se compile sans erreur.

    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
     
    // Insert a table into a word processing document.
    		void CreateTable()
    		{
    			// Use the file name and path passed in as an argument 
    			// to open an existing Word 2007 document.
     
    			WordprocessingDocument^ doc = WordprocessingDocument::Create("C:\\Joris\\MyFileTab.docx", WordprocessingDocumentType::Document);
    			MainDocumentPart^ mainPart = doc->AddMainDocumentPart();
    			mainPart->Document = gcnew Document;
    			Body^ body = mainPart->Document->AppendChild(gcnew Body);
    			Paragraph^ para = body->AppendChild(gcnew Paragraph);
    			Run^ run = para->AppendChild(gcnew Run);
     
    				// Create an empty table.
    				Table^ table = gcnew Table();
     
    				TopBorder^ topBorder = gcnew TopBorder();
    				BottomBorder^ bottomBorder = gcnew BottomBorder();
    				LeftBorder^ leftBorder = gcnew LeftBorder();
    				RightBorder^ rightBorder = gcnew RightBorder();
    				InsideHorizontalBorder^ insideHorizontalBorder = gcnew InsideHorizontalBorder();
     
    				//^ topBorder = gcnew TopBorder();
     
    				topBorder->Val = BorderValues::Dashed;
    				topBorder->Size = 24;
    				bottomBorder->Val = BorderValues::Dashed;
    				bottomBorder->Size = 24;
    				leftBorder->Val = BorderValues::Dashed;
    				leftBorder->Size = 24;
    				rightBorder->Val = BorderValues::Dashed;
    				rightBorder->Size = 24;
    				insideHorizontalBorder->Val = BorderValues::Dashed;
    				insideHorizontalBorder->Size = 24;
     
    				TableBorders^ tblBorders = gcnew TableBorders();
    				tblBorders->TopBorder = topBorder;
    				tblBorders->BottomBorder = bottomBorder;
    				tblBorders->LeftBorder = leftBorder;
    				tblBorders->RightBorder = rightBorder;
    				tblBorders->InsideHorizontalBorder = insideHorizontalBorder;
     
    				TableProperties^ tblProp = gcnew TableProperties();
    				tblProp->TableBorders = tblBorders;
     
    				table->AppendChild(tblProp);
     
    				TableRow^ tr = gcnew TableRow();
    				TableCell^ tc1 = gcnew TableCell();
     
    				TableCellWidth^ tableCellWidth = gcnew TableCellWidth();
    				tableCellWidth->Width = "2400";
     
    				TableCellProperties^ tableCellProperties =  gcnew TableCellProperties();
    				tableCellProperties->TableCellWidth = tableCellWidth;
     
    				run->Append(gcnew DocumentFormat::OpenXml::Wordprocessing::Text("Hello !"));
     
    				tc1->Append(run);
    				tr->Append(tc1);
     
    				table->Append(tr);
    				delete doc;
     
    		}
    Cela me génère le document Word mais vide.

  9. #9
    Expert éminent sénior
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2005
    Messages
    5 071
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Conseil

    Informations forums :
    Inscription : Février 2005
    Messages : 5 071
    Points : 12 116
    Points
    12 116
    Par défaut
    Pouvez-vous indiquer comment vous avez réglé le "Cannot insert the OpenXmlElement "newChild" because it is part of a tree" de votre précédent message ?

    Sinon, "delete doc?" ????

    Ca serait pas plus un truc comme "doc->Close();" ?

  10. #10
    Expert éminent sénior
    Avatar de Médinoc
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2005
    Messages
    27 369
    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 369
    Points : 41 519
    Points
    41 519
    Par défaut
    En C++/CLI, delete sur un objet implémentant IDisposable fait le nettoyage voulu.
    SVP, pas de questions techniques par MP. Surtout si je ne vous ai jamais parlé avant.

    "Aw, come on, who would be so stupid as to insert a cast to make an error go away without actually fixing the error?"
    Apparently everyone.
    -- Raymond Chen.
    Traduction obligatoire: "Oh, voyons, qui serait assez stupide pour mettre un cast pour faire disparaitre un message d'erreur sans vraiment corriger l'erreur?" - Apparemment, tout le monde. -- Raymond Chen.

  11. #11
    Nouveau membre du Club
    Homme Profil pro
    Informaticien - Profesionnal master application development
    Inscrit en
    Octobre 2011
    Messages
    47
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Informaticien - Profesionnal master application development
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2011
    Messages : 47
    Points : 32
    Points
    32
    Par défaut
    Citation Envoyé par bacelar Voir le message
    Pouvez-vous indiquer comment vous avez réglé le "Cannot insert the OpenXmlElement "newChild" because it is part of a tree" de votre précédent message ?
    Pour ce faire j'ai réécris cette ligne

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    // Create a TableProperties object and specify its border information.
    				TableProperties^ tblProp = gcnew TableProperties(gcnew TableBorders(topBorder, bottomBorder, leftBorder, rightBorder, insideHorizontalBorder));
    mais en plusieurs étapes :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
     
    TableBorders^ tblBorders = gcnew TableBorders();
    				tblBorders->TopBorder = topBorder;
    				tblBorders->BottomBorder = bottomBorder;
    				tblBorders->LeftBorder = leftBorder;
    				tblBorders->RightBorder = rightBorder;
    				tblBorders->InsideHorizontalBorder = insideHorizontalBorder;
     
    				TableProperties^ tblProp = gcnew TableProperties();
    				tblProp->TableBorders = tblBorders;
    Médinoc : Je dois donc bien utiliser la méthode delete, juste ?

    Si quelqu'un voit pourquoi le tableau ne se génère pas un minimum je suis preneur ! Je suis pas très rentable là ..
    Merci

    PS: J'ai débuté le langage il y à deux semaines.

  12. #12
    Expert éminent sénior
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2005
    Messages
    5 071
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Conseil

    Informations forums :
    Inscription : Février 2005
    Messages : 5 071
    Points : 12 116
    Points
    12 116
    Par défaut
    delete être le ménage dans la mémoire, mais je ne suis pas sûr qu'il sauve le document.

    http://msdn.microsoft.com/en-us/libr...ffice.14).aspx

  13. #13
    Expert éminent sénior
    Avatar de Médinoc
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2005
    Messages
    27 369
    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 369
    Points : 41 519
    Points
    41 519
    Par défaut
    Je ne m'y attendais pas, mais si, en fait.
    SVP, pas de questions techniques par MP. Surtout si je ne vous ai jamais parlé avant.

    "Aw, come on, who would be so stupid as to insert a cast to make an error go away without actually fixing the error?"
    Apparently everyone.
    -- Raymond Chen.
    Traduction obligatoire: "Oh, voyons, qui serait assez stupide pour mettre un cast pour faire disparaitre un message d'erreur sans vraiment corriger l'erreur?" - Apparemment, tout le monde. -- Raymond Chen.

  14. #14
    Nouveau membre du Club
    Homme Profil pro
    Informaticien - Profesionnal master application development
    Inscrit en
    Octobre 2011
    Messages
    47
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Suisse

    Informations professionnelles :
    Activité : Informaticien - Profesionnal master application development
    Secteur : Industrie

    Informations forums :
    Inscription : Octobre 2011
    Messages : 47
    Points : 32
    Points
    32
    Par défaut
    voici mon code générant un tableau dans Word à partir des données d'un DataGridView

    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
     
    void CreateTable()
    		{
    				const int borderSize = 12;
     
    				WordprocessingDocument^ doc = WordprocessingDocument::Create("C:\\Joris\\MyFileTab.docx", WordprocessingDocumentType::Document);
    				MainDocumentPart^ mainDocumentPart = doc->AddMainDocumentPart();
    				mainDocumentPart->Document = gcnew Document();
    				Body^ body = mainDocumentPart->Document->AppendChild(gcnew Body());
     
    				Table^ table = gcnew Table();
     
    				TableRow^ trHeader = gcnew TableRow();
     
    				//TableRow^ tr1 = gcnew TableRow();
     
    				TableProperties^ tblProperties = gcnew TableProperties();
     
    				TopBorder^ topBorder = gcnew TopBorder();
    				BottomBorder^ bottomBorder = gcnew BottomBorder();
    				LeftBorder^ leftBorder = gcnew LeftBorder();
    				RightBorder^ rightBorder = gcnew RightBorder();
    				InsideHorizontalBorder^ insideHorizontalBorder = gcnew InsideHorizontalBorder();
    				InsideVerticalBorder^ insideVerticalBorder = gcnew InsideVerticalBorder();
     
    				topBorder->Val = BorderValues::Thick;
    				topBorder->Size = borderSize;
    				bottomBorder->Val = BorderValues::Thick;
    				bottomBorder->Size = borderSize;
    				leftBorder->Val = BorderValues::Thick;
    				leftBorder->Size = borderSize;
    				rightBorder->Val = BorderValues::Thick;
    				rightBorder->Size = borderSize;
    				insideHorizontalBorder->Val = BorderValues::Thick;
    				insideHorizontalBorder->Size = borderSize;
    				insideVerticalBorder->Val = BorderValues::Thick;
    				insideVerticalBorder->Size = borderSize;
     
    				TableBorders^ tblBorders = gcnew TableBorders();
    				tblBorders->TopBorder = topBorder;
    				tblBorders->BottomBorder = bottomBorder;
    				tblBorders->LeftBorder = leftBorder;
    				tblBorders->RightBorder = rightBorder;
    				tblBorders->InsideHorizontalBorder = insideHorizontalBorder;
    				tblBorders->InsideVerticalBorder = insideVerticalBorder;
     
    				tblProperties->TableBorders = tblBorders;
    				table->AppendChild(tblProperties);
     
    				for(int i = 0; i < nbItem; i++){
    						TableCell^ tc = gcnew TableCell();
    						Paragraph^ pg = gcnew Paragraph();
    						Run^ run = gcnew Run();
    						run->AppendChild(gcnew DocumentFormat::OpenXml::Wordprocessing::Text(this->dataGridView1->Columns[i]->Name));
    						pg->AppendChild(run);
    						tc->AppendChild(pg);
     
    						trHeader->AppendChild(tc);
    				}
    				table->AppendChild(trHeader);
     
    				int ligne = 0;
    				while(ligne < nbRows){
    				TableRow^ tr = gcnew TableRow();
    					for(int i = 0; i < nbItem; i++){
    						TableCell^ tc = gcnew TableCell();
    						Paragraph^ pg = gcnew Paragraph();
    						Run^ run = gcnew Run();
    						run->AppendChild(gcnew DocumentFormat::OpenXml::Wordprocessing::Text(this->dataGridView1->Rows[ligne]->Cells[i]->Value->ToString()));
    						pg->AppendChild(run);
    						tc->AppendChild(pg);
    						tr->AppendChild(tc);
    					}
    					table->AppendChild(tr);
    					ligne++;
    				}
     
     
    				//table->AppendChild(tr1);
     
    				body->AppendChild(table);
    				mainDocumentPart->Document->Save();
    				delete doc;
    		}

  15. #15
    Expert éminent sénior
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Février 2005
    Messages
    5 071
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : Conseil

    Informations forums :
    Inscription : Février 2005
    Messages : 5 071
    Points : 12 116
    Points
    12 116
    Par défaut
    Merci pour ce retour.

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

Discussions similaires

  1. [XL-2007] Problème code VBA depuis excel pour générer un document word publiposté
    Par stechet dans le forum Macros et VBA Excel
    Réponses: 1
    Dernier message: 05/02/2015, 10h03
  2. Générer un document Word/Excel - Visual C++/CLI
    Par cp-08jhu dans le forum C++
    Réponses: 6
    Dernier message: 25/08/2014, 16h02
  3. Générer un document word ou excel à partir un site PHP
    Par MarylouTe dans le forum Langage
    Réponses: 0
    Dernier message: 26/05/2014, 09h47
  4. Réponses: 7
    Dernier message: 09/10/2009, 14h12
  5. Générer un document Word
    Par kwakanar dans le forum C++
    Réponses: 3
    Dernier message: 08/06/2006, 13h08

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