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

Windows Forms Discussion :

[C#] Qui pourrait m'aider à faire marcher le WebService Amazon


Sujet :

Windows Forms

  1. #21
    Membre éclairé
    Avatar de doudoustephane
    Homme Profil pro
    Gérant
    Inscrit en
    Août 2005
    Messages
    1 129
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Indre et Loire (Centre)

    Informations professionnelles :
    Activité : Gérant

    Informations forums :
    Inscription : Août 2005
    Messages : 1 129
    Points : 862
    Points
    862
    Par défaut
    voila, je ne mets que la partie concernee :
    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
     
                //have we this in the cache already? 
                ItemSearchResponse response; 
                //if (Cache[TextBox1.Text] == null) 
                //{ 
                AWSECommerceService aws = new AWSECommerceService();
                ItemSearchRequest request = new ItemSearchRequest(); 
     
                request.SearchIndex = "Books"; 
     
                request.Power = "title:" + TextBox1.Text; 
                request.ResponseGroup = new string[] { "Large" };
                request.Sort = "salesrank"; 
     
                ItemSearchRequest[] requests = new ItemSearchRequest[] { request }; 
     
                ItemSearch itemSearch = new ItemSearch(); 
                itemSearch.SubscriptionId = "XXXXXXXXXXXXXXXXXXX"; 
                itemSearch.Request = requests;
                try
                {
                    response = aws.ItemSearch(itemSearch);
                    Items info = response.Items[0];
                    Item[] items = info.Item;
                    if (items != null)
                    {
                        for (int i = 0; i < items.Length; i++)
                        {
                            Item item = items[i];
                            if (item.MediumImage != null)
                                imageList1.Images.Add(System.Drawing.Image.FromStream(download_temp.OpenRead(item.MediumImage.URL)));
                            else
                                imageList1.Images.Add(System.Drawing.Image.FromFile(Application.StartupPath + "\\images\\image_par_defaut.jpeg"));
                            Liste.Nodes.Insert(i,"" + i,item.ItemAttributes.Title,i,i);
                        }
                    }
                    else
                    {
                        Cursor.Current = Cursors.Default;
                        System.Windows.Forms.MessageBox.Show("Aucun resultat pour votre recherche.", "RESULTATS VIDE", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                    }
                }
                catch (Exception ex)
                {
                    Cursor.Current = Cursors.Default;
                    System.Windows.Forms.MessageBox.Show(ex.ToString(), "ERREUR", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                }
    pour info, imageList1 et Liste sont des composants de ma form (imagelist et treeview)
    développeur en folie cherche à ... développer encore plus

  2. #22
    Membre extrêmement actif Avatar de Cazaux-Moutou-Philippe
    Inscrit en
    Mai 2005
    Messages
    674
    Détails du profil
    Informations personnelles :
    Âge : 74

    Informations forums :
    Inscription : Mai 2005
    Messages : 674
    Points : 171
    Points
    171
    Par défaut
    avec ce code la, ca me remonte des données

    mais je ne touves pas mes titres, acteurs etc ...

    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
            private void dototo()
            {
                //have we this in the cache already? 
                ItemSearchResponse response;
                //if (Cache[TextBox1.Text] == null) 
                //{ 
                AWSECommerceService aws = new AWSECommerceService();
                ItemSearchRequest request = new ItemSearchRequest();
     
                request.SearchIndex = "DVD";
     
               // request.Power =  "Zorro";
                request.Title = "Zorro"; 
                request.ResponseGroup = new string[] { "Large" };
                //request.Sort = "salesrank";
     
                ItemSearchRequest[] requests = new ItemSearchRequest[] { request };
     
                ItemSearch itemSearch = new ItemSearch();
                //itemSearch.SubscriptionId = "066J5Q8KK88M0TA5HF02";
                itemSearch.SubscriptionId = "0525E2PQ81DD7ZTWTK82";
                itemSearch.Request = requests;
                try
                {
                    response = aws.ItemSearch(itemSearch);
                    Items info = response.Items[0];
                    Item[] items = info.Item;
                    if (items != null)
                    {
                        for (int i = 0; i < items.Length; i++)
                        {
                            Item item = items[i];
                           // if (item.MediumImage != null)
                               // imageList1.Images.Add(System.Drawing.Image.FromStream(download_temp.OpenRead(item.MediumImage.URL)));
                           // else
                              //  imageList1.Images.Add(System.Drawing.Image.FromFile(Application.StartupPath + "\\images\\image_par_defaut.jpeg"));
                           // Liste.Nodes.Insert(i, "" + i, item.ItemAttributes.Title, i, i);
                        }
                    }
                    else
                    {
                        Cursor.Current = Cursors.Default;
                        System.Windows.Forms.MessageBox.Show("Aucun resultat pour votre recherche.", "RESULTATS VIDE", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                    }
                }
                catch (Exception ex)
                {
                    Cursor.Current = Cursors.Default;
                    System.Windows.Forms.MessageBox.Show(ex.ToString(), "ERREUR", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                }
     
            }
    Philippe Cazaux-Moutou
    C#
    Delphi
    Windev

    Guadeloupe

    www.ancestrologie.net/fr

  3. #23
    Membre extrêmement actif Avatar de Cazaux-Moutou-Philippe
    Inscrit en
    Mai 2005
    Messages
    674
    Détails du profil
    Informations personnelles :
    Âge : 74

    Informations forums :
    Inscription : Mai 2005
    Messages : 674
    Points : 171
    Points
    171
    Par défaut
    et en plus y manque qq chose, car ca cherche sur Amazon US et non FR
    Philippe Cazaux-Moutou
    C#
    Delphi
    Windev

    Guadeloupe

    www.ancestrologie.net/fr

  4. #24
    Membre extrêmement actif Avatar de Cazaux-Moutou-Philippe
    Inscrit en
    Mai 2005
    Messages
    674
    Détails du profil
    Informations personnelles :
    Âge : 74

    Informations forums :
    Inscription : Mai 2005
    Messages : 674
    Points : 171
    Points
    171
    Par défaut
    pour le francais, j ai trouvé

    faut mettre ca au début aws.url

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
                AWSECommerceService aws = new AWSECommerceService();
                ItemSearchRequest request = new ItemSearchRequest();
     
     
                aws.Url = "http://soap.amazon.fr/onca/soap?Service=AWSECommerceService";
    Philippe Cazaux-Moutou
    C#
    Delphi
    Windev

    Guadeloupe

    www.ancestrologie.net/fr

  5. #25
    Membre extrêmement actif Avatar de Cazaux-Moutou-Philippe
    Inscrit en
    Mai 2005
    Messages
    674
    Détails du profil
    Informations personnelles :
    Âge : 74

    Informations forums :
    Inscription : Mai 2005
    Messages : 674
    Points : 171
    Points
    171
    Par défaut
    Voili voilou

    avec ce code, je remontes bien mes films, mais peut on optimiser ce 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
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
            private void dototo()
            {
                ItemSearchResponse response;
                AWSECommerceService aws = new AWSECommerceService();
                ItemSearchRequest request = new ItemSearchRequest();
     
                aws.Url = Properties.Settings.Default.AmazonUrlFR;
               //     "http://soap.amazon.fr/onca/soap?Service=AWSECommerceService";
                request.SearchIndex = "DVD";
     
                request.Title = "Zorro"; 
                request.ResponseGroup = new string[] { "Large" };
                //request.Sort = "salesrank";
     
                ItemSearchRequest[] requests = new ItemSearchRequest[] { request };
     
                ItemSearch itemSearch = new ItemSearch();
                itemSearch.SubscriptionId = "0525E2PQ81DD7ZTWTK82";
                itemSearch.Request = requests;
                try
                {
                    response = aws.ItemSearch(itemSearch);
                    Items info = response.Items[0];
                    Item[] items = info.Item;
                    if (items != null)
                    {
                        for (int i = 0; i < items.Length; i++)
                        {
                            Item item = items[i];
                            this.listBoxTitle.Items.Add(item.ItemAttributes.Title);
                        }
                    }
                    else
                    {
                        Cursor.Current = Cursors.Default;
                        System.Windows.Forms.MessageBox.Show("Aucun resultat pour votre recherche.", "RESULTATS VIDE", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                    }
                }
                catch (Exception ex)
                {
                    Cursor.Current = Cursors.Default;
                    System.Windows.Forms.MessageBox.Show(ex.ToString(), "ERREUR", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                }
     
            }
    Philippe Cazaux-Moutou
    C#
    Delphi
    Windev

    Guadeloupe

    www.ancestrologie.net/fr

  6. #26
    Membre éclairé
    Avatar de doudoustephane
    Homme Profil pro
    Gérant
    Inscrit en
    Août 2005
    Messages
    1 129
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Indre et Loire (Centre)

    Informations professionnelles :
    Activité : Gérant

    Informations forums :
    Inscription : Août 2005
    Messages : 1 129
    Points : 862
    Points
    862
    Par défaut
    ok, moi aussi ca marche.
    mais peux-tu editer le code et enlever ma SubscriptionID d'amazon STP Cazaux-Moutou-Philippe et la remplacer par des XXX, j'ai oublie de le faire avant, merci...
    développeur en folie cherche à ... développer encore plus

  7. #27
    Membre actif Avatar de toniolol
    Homme Profil pro
    Chef de projet en SSII
    Inscrit en
    Juin 2005
    Messages
    281
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 46
    Localisation : France, Gard (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Chef de projet en SSII
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2005
    Messages : 281
    Points : 296
    Points
    296
    Par défaut
    En fait c'était quoi le problème ? L'adresse du WS ?
    Pour l'ID pas de soucy je viens de voir qu'on a tous la même ! (celle qui fini par 82)
    Pensez aux règles et au qui rime avec !

  8. #28
    Membre éclairé
    Avatar de doudoustephane
    Homme Profil pro
    Gérant
    Inscrit en
    Août 2005
    Messages
    1 129
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Indre et Loire (Centre)

    Informations professionnelles :
    Activité : Gérant

    Informations forums :
    Inscription : Août 2005
    Messages : 1 129
    Points : 862
    Points
    862
    Par défaut
    Citation Envoyé par toniolol
    En fait c'était quoi le problème ? L'adresse du WS ?
    Pour l'ID pas de soucy je viens de voir qu'on a tous la même ! (celle qui fini par 82)
    je sais pas c'etait quoi le probleme...
    pour le code, ok, mais bon, c'est mieux quand meme...
    développeur en folie cherche à ... développer encore plus

  9. #29
    Membre extrêmement actif Avatar de Cazaux-Moutou-Philippe
    Inscrit en
    Mai 2005
    Messages
    674
    Détails du profil
    Informations personnelles :
    Âge : 74

    Informations forums :
    Inscription : Mai 2005
    Messages : 674
    Points : 171
    Points
    171
    Par défaut
    manquait ca
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    aws.Url = "http://soap.amazon.fr/onca/soap?Service=AWSECommerceService";
    Philippe Cazaux-Moutou
    C#
    Delphi
    Windev

    Guadeloupe

    www.ancestrologie.net/fr

  10. #30
    Membre extrêmement actif Avatar de Cazaux-Moutou-Philippe
    Inscrit en
    Mai 2005
    Messages
    674
    Détails du profil
    Informations personnelles :
    Âge : 74

    Informations forums :
    Inscription : Mai 2005
    Messages : 674
    Points : 171
    Points
    171
    Par défaut
    Bon

    maintenanct ce bout de code, marche et je garni bien ma listbox avec les films

    mais maintenant, comment en cliquant sur un item de ma listbox, remplir les champs pour un film choisi dans la listbox ?

    car
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Item[] items = info.Item;
    et privé a la methode dototo

    comment faire ?
    Philippe Cazaux-Moutou
    C#
    Delphi
    Windev

    Guadeloupe

    www.ancestrologie.net/fr

  11. #31
    Membre éclairé
    Avatar de doudoustephane
    Homme Profil pro
    Gérant
    Inscrit en
    Août 2005
    Messages
    1 129
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Indre et Loire (Centre)

    Informations professionnelles :
    Activité : Gérant

    Informations forums :
    Inscription : Août 2005
    Messages : 1 129
    Points : 862
    Points
    862
    Par défaut
    Citation Envoyé par Cazaux-Moutou-Philippe
    manquait ca
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    aws.Url = "http://soap.amazon.fr/onca/soap?Service=AWSECommerceService";
    non, car moi je travaillais deja avec la WL en francais et je ne l'ai pas rajoute...
    développeur en folie cherche à ... développer encore plus

  12. #32
    Membre éclairé
    Avatar de doudoustephane
    Homme Profil pro
    Gérant
    Inscrit en
    Août 2005
    Messages
    1 129
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Indre et Loire (Centre)

    Informations professionnelles :
    Activité : Gérant

    Informations forums :
    Inscription : Août 2005
    Messages : 1 129
    Points : 862
    Points
    862
    Par défaut
    sinon, comment recuperer un resume des dvd ou livres... ou genre quatrieme de couverture par exemple ???
    développeur en folie cherche à ... développer encore plus

  13. #33
    Membre extrêmement actif Avatar de Cazaux-Moutou-Philippe
    Inscrit en
    Mai 2005
    Messages
    674
    Détails du profil
    Informations personnelles :
    Âge : 74

    Informations forums :
    Inscription : Mai 2005
    Messages : 674
    Points : 171
    Points
    171
    Par défaut
    pour le résumé ou la descrition faut faire qq chose comme ca

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
                string description = "";
                EditorialReview[] editorialReviews = amazonItem.EditorialReviews;
                if ((editorialReviews != null) && (editorialReviews.Length > 0))
                {
                    if (HTMLFilteringEnabled == true)
                    {
                        description = this.FilterHTMLText(editorialReviews[0].Content);
                    }
                    else
                    {
                        description = editorialReviews[0].Content;
                    }
                }
    Philippe Cazaux-Moutou
    C#
    Delphi
    Windev

    Guadeloupe

    www.ancestrologie.net/fr

  14. #34
    Membre extrêmement actif Avatar de Cazaux-Moutou-Philippe
    Inscrit en
    Mai 2005
    Messages
    674
    Détails du profil
    Informations personnelles :
    Âge : 74

    Informations forums :
    Inscription : Mai 2005
    Messages : 674
    Points : 171
    Points
    171
    Par défaut
    Voila, j en ai fait une classe
    mon code est il correct ??

    Mais dans la classe, j ai un pb pour récupérer les acteurs, j ai un
    indice hors limite

    merci de votre aide

    voici dans ma fenetre

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
        public partial class FFilmsSearch : Form
        {
            clAmazon _Amazon = new clAmazon();
            .............
    puis au click que bouton cherche
    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
     
                    // Initialize la recherche via WebService
                    _Amazon.Fi_TitreSearch = this.txtSearch.Text;
                    DVDTheque.AmazonWebReference.Items _RempliLB = _Amazon.doFindDVD(
                        Properties.Settings.Default.AmazonUrlFR, //http://soap.amazon.fr/onca/soap?Service=AWSECommerceService
                        Properties.Settings.Default.AmazonSubscriptionId, // 0525E2PQ81DD7ZTWTK82
                        Properties.Settings.Default.AmazonSearchMode, // DVD
                         "Large" );
     
                    // si on trouve des titres, on garni la listbox ------------
                    if (_RempliLB.Item != null)
                    {
                        for (int i = 0; i < _RempliLB.Item.Length; i++)
                        {
                            DVDTheque.AmazonWebReference.Item item = _RempliLB.Item[i];
                            this.listBoxTitle.Items.Add(item.ItemAttributes.Title);
                        }
                    }
    puis quand on clique sur un des elements de la listbox

    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
                    int i;
                    i = this.listBoxTitle.SelectedIndex;
     
                    DVDTheque.AmazonWebReference.Item _Item = _Amazon.doInfos(i);
     
                    this.teTitle.Text = _Item.ItemAttributes.Title;
                    this.pctBoxCover.ImageLocation = _Item.MediumImage.URL;
                    this.teProdYear.Text = _Item.ItemAttributes.ReleaseDate;
                    ////_Actors = searchResults[i].m_Actors;
                    this.teActors.Text = _Amazon._ActorsTxt;
                    ////this.teRealisator.Text = searchResults[i].Directors;
     
                    this.meSummary.Text = _Amazon._Resume;
     
                    _UrlAmazon = _Item.DetailPageURL;
                    this.teType.Text = _Amazon._Genre;
    puis enfin voici la classe

    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
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Windows.Forms;
    using DVDTheque.AmazonWebReference;
     
    namespace DVDTheque
    {
        class clAmazon
        {
            public Item[] _items; 
            public string[] _Actors = new string[] { };
            public string _ActorsTxt;
            public string _Resume;
            public string _Genre;
     
            private String fi_TitreSearch;
     
            public String Fi_TitreSearch
            {
                get { return fi_TitreSearch; }
                set { fi_TitreSearch = value; }
            }
     
            public Items doFindDVD(string _AmazonUrlFR, // http://soap.amazon.fr/onca/soap?Service=AWSECommerceService
                                    string _AmazonSubscriptionId, //0525E2PQ81DD7ZTWTK82
                                    string _AmazonSearchMode, // DVD
                                    string _Mode)// Large
            {
                // Initialisation du webservice -------
                ItemSearchResponse response;
                AWSECommerceService aws = new AWSECommerceService();
                ItemSearchRequest request = new ItemSearchRequest();
     
                // récupération des param locaux -------
                aws.Url = _AmazonUrlFR;
                request.SearchIndex = _AmazonSearchMode;
     
                // on recois le titre a chercher -------
                request.Title = fi_TitreSearch;
                request.ResponseGroup = new string[] { _Mode };
                //request.Sort = "salesrank";
     
                ItemSearchRequest[] requests = new ItemSearchRequest[] { request };
     
                ItemSearch itemSearch = new ItemSearch();
                itemSearch.SubscriptionId = _AmazonSubscriptionId;
                itemSearch.Request = requests;
     
                response = aws.ItemSearch(itemSearch);
                Items info = response.Items[0];
     
                _items = info.Item;
     
                aws.Dispose();
                return info;
     
            }
     
            public Item doInfos(int _Indice)
            {
                // -- Récupération du résumé -----------------------------------------
                _Resume = "Pas de résumé pour ce film";
     
                if ((_items[_Indice].EditorialReviews != null) && (_items[_Indice].EditorialReviews.Length > 0))
                {
                    _Resume = _items[_Indice].EditorialReviews[0].Content;
                }
     
                // -- Récupération du genre du film ----------------------------------
                _Genre = "Inconnu";
     
                if ((_items[_Indice].BrowseNodes.BrowseNode != null) && (_items[_Indice].BrowseNodes.BrowseNode.Length > 0))
                {
                    _Genre = _items[_Indice].BrowseNodes.BrowseNode[0].Name;
                }
     
                //MessageBox.Show(_items[_Indice].ItemAttributes.Actor.Length.ToString());
     
                // -- récupération des acteurs --------------------------------------
                for (int i = 0; i < _items[_Indice].ItemAttributes.Actor.Length; i++)
                {
                    // Ici ca plante, il me dit indice hors limite
                    //_Actors[i] = _items[_Indice].ItemAttributes.Actor[i];
                }
     
                if (this._Actors != null)
                {
                    foreach (string part in this._Actors)
                    {
                        if (_ActorsTxt == "")
                        {
                            _ActorsTxt = part;
                        }
                        else
                        {
                            if (part != null) { _ActorsTxt = _ActorsTxt + ", " + part; }
                        }
                    }
                }
                // ------------------------------------------------------------------
     
                return _items[_Indice];
            }
        }
    }
    Philippe Cazaux-Moutou
    C#
    Delphi
    Windev

    Guadeloupe

    www.ancestrologie.net/fr

  15. #35
    Membre éclairé
    Avatar de doudoustephane
    Homme Profil pro
    Gérant
    Inscrit en
    Août 2005
    Messages
    1 129
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Indre et Loire (Centre)

    Informations professionnelles :
    Activité : Gérant

    Informations forums :
    Inscription : Août 2005
    Messages : 1 129
    Points : 862
    Points
    862
    Par défaut
    et quelqu'un connait-il l'adresse d'amazon ou je pourrai trouver la signification de TOUTES les proprietes d'un item car je les ai repertorie sur papier mais je ne sais pas trop a quoi ca sert pour certaines... ???
    développeur en folie cherche à ... développer encore plus

+ Répondre à la discussion
Cette discussion est résolue.
Page 2 sur 2 PremièrePremière 12

Discussions similaires

  1. [Fortran 95] Qui peut m'aider à faire tourner mon prog ?
    Par patrickmaubeuge dans le forum Fortran
    Réponses: 1
    Dernier message: 28/04/2007, 19h08

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