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

Android Discussion :

Problème avec un Toast


Sujet :

Android

  1. #1
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut Problème avec un Toast
    Bonjour,

    J'aimerais savoir qu'elle est la portée d'un toasts, parce que voilà mon problème..
    J'ai déclaré un toasts dans une activité, et celui-ci s'affiche dans les activités suivantes..

    Ce serait à cause de l'héritage non? Vu que les autres activités héritent de l'activité où je code mon toast..

    Je ne sais pas si vous avez besoin du code, s'il vous le faut, demander le moi, pas de soucis.

    Merci d'avance

  2. #2
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Novembre 2011
    Messages
    115
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hérault (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2011
    Messages : 115
    Points : 106
    Points
    106
    Par défaut
    Un toast va reste le temps que tu lui à définis. Même si tu change d'activité ou que tu quitte ton application le toast va reste les x secondes définis

  3. #3
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut
    Je le définis cette manière :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    Toast.makeText(
    					this,
    					"Ce client n'est pas enregistré dans la base, vérifier l'orthographe ou bien ajouter un nouveau client.",
    					Toast.LENGTH_LONG).show();

  4. #4
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut
    Comment le limiter à une seule activité?
    J'ai remplacé this par le nomdemonActivity.this, mais ça ne changer rien..

  5. #5
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2011
    Messages
    757
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2011
    Messages : 757
    Points : 968
    Points
    968
    Par défaut
    Ce n'est tout simplement pas possible.
    C'est à toi d'implémenter ce comportement, ou alors tu peux utiliser une librairie du style Crouton.

  6. #6
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut
    Ah, d'accord.. Et comment implémenter ce comportement?

  7. #7
    Membre régulier
    Homme Profil pro
    Étudiant
    Inscrit en
    Novembre 2011
    Messages
    115
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Hérault (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2011
    Messages : 115
    Points : 106
    Points
    106
    Par défaut
    Ben tous est dans le lien qu'il t'a passé

  8. #8
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut
    Le lien c'est pour utiliser une librairie, je voulais savoir pour la première solution qu'il a proposé

  9. #9
    Membre éprouvé
    Profil pro
    Inscrit en
    Janvier 2011
    Messages
    757
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2011
    Messages : 757
    Points : 968
    Points
    968
    Par défaut
    Je ne saurais pas te l'expliquer, mais comme le dit kalagan34, tu peux aller lire le code source de cette librairie pour comprendre l'implémentation.

  10. #10
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut
    D'accord, autant pour moi
    Merci!

  11. #11
    Membre du Club
    Homme Profil pro
    Developpeur Android
    Inscrit en
    Juin 2012
    Messages
    65
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Developpeur Android
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2012
    Messages : 65
    Points : 57
    Points
    57
    Par défaut
    Citation Envoyé par Pepito39 Voir le message
    Je le définis cette manière :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    Toast.makeText(
    					this,
    					"Ce client n'est pas enregistré dans la base, vérifier l'orthographe ou bien ajouter un nouveau client.",
    					Toast.LENGTH_LONG).show();

    Tu peut changer la longueur d'apparition du Toast :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Toast.makeText(this,"Ce client....",	Toast.LENGTH_SHORT).show();

  12. #12
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut
    J'ai essayé, mais ça n'a pas fonctionné, c'est le même résultat sauf que le message est plus court ^^
    En fait, le problème, c'est pas qu'il dure le temps que change d'activité.. c'est qu'il se réaffiche à chaque fois, à chaque activité suivante celle où je l'ai déclaré.

  13. #13
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut
    J'ai donc importé la librairie Crouton, mais j'ai le même problème!
    L'alert s'affiche sur les autres activités

    Il doit y a voir quelque chose que j'ai mal fait dans le code donc..
    Je poste le 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
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    public class AffichageClientActivity extends MainActivity 
     
    	String nomduclient;
    	clientBDD cliBDD = new clientBDD(this);
    	ListView clientListe;
    	ArrayList<client> clients = new ArrayList<client>();
    	client cli = new client("", "", "", "", "", "", "", 0, 0);
    	int identifiant;
    	private ArrayAdapter<String> ClientAdapter = null;
     
    	protected void onCreate(Bundle saveInstanceBundle) {
    		super.onCreate(saveInstanceBundle);
    		setContentView(R.layout.listingclient);
    		clientListe = (ListView) findViewById(R.id.list);
     
    		// récupération de la valeur de l'EditText
    		Bundle objetbundle = this.getIntent().getExtras();
    	    nomduclient = objetbundle.getString("nomclient");
     
    		clientListe = (ListView) findViewById(R.id.list);
    		clientListe.setOnItemClickListener(ItemListener);
    		ClientAdapter = new ArrayAdapter<String>(this,
    				android.R.layout.simple_list_item_1);
    		clientListe.setAdapter(ClientAdapter);
    		cliBDD.open();
    		clients = cliBDD.getClientwithNom(nomduclient);
    		if (clients != null) {
    			// affichage du ou des client(s)
    			for (int i=0; i < clients.size();i++){
    			ClientAdapter.add(clients.get(i).getNom() + "  " + clients.get(i).getPrenom());
    			ClientAdapter.setNotifyOnChange(true);
    			}
     
    		} else {
    			Crouton.makeText(
    					AffichageClientActivity.this,
    					"Ce client n'est pas enregistré dans la base, vérifier l'orthographe ou bien ajouter un nouveau client.",
    					Style.ALERT).show();
    		}
    		cliBDD.close();
    	}
     
    	public String toString() {
    		String MonStringClient = null;
    		MonStringClient = cli.getNom() + cli.getPrenom();
    		return MonStringClient;
    	}
     
    	private OnItemClickListener ItemListener = new OnItemClickListener() {
    		public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
    				long arg3) {
    			// recupération du nom du client
     
    			Intent versFidelite = new Intent(getApplicationContext(),
    					FideliteActivity.class);
    			identifiant = clients.get(arg2).getId(); 
    			versFidelite.putExtra("identifiant",identifiant);
    			versFidelite.putExtra("nomduclient", nomduclient);
    			startActivity(versFidelite);
     
    		}
    	};
     
    }
    Et les 2 autres activités où s'affiche malgré moi le crouton
    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
    public class FideliteActivity extends AffichageClientActivity // implements
    																// View.OnClickListener
    {
    	clientBDD clibdd = new clientBDD(this);
    	EditText nombre;
    	Button detail;
    	Button ok;
    	int identifiant;
    	String nomduclient;
     
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.fidelite);
    		// récupération de la valeur de l'edittext
    		Bundle objetbundle = this.getIntent().getExtras();
    		identifiant = objetbundle.getInt("identifiant");
    		nomduclient = objetbundle.getString("nomduclient");
    		detail = (Button) findViewById(R.id.Detail);
    		ok = (Button) findViewById(R.id.valider);
    		nombre = (EditText) findViewById(R.id.nb);
    		ok.setOnClickListener(validerListener);
    		detail.setOnClickListener(detailclientListener);
     
    	}
     
    	private OnClickListener validerListener = new OnClickListener() {
    		public void onClick(View v) {
    			if (v == ok) {
    				// récupération de la valeur dans l'EditText
    				String nb = nombre.getText().toString();
    				int nbpizz = Integer.parseInt(nb);
    				// connexion à la BDD et récupération du nombre de pizza
    				// existant
    				cliBDD.open();
    				cli = cliBDD.getClientwithId(identifiant);
    				int nbexist = cli.getNbpizzaencours();
     
    				// calcul plus affichage des avantages fidelité
     
    				nbexist = nbexist + nbpizz;
     
    				if (nbexist >= 30) {
    					Toast.makeText(FideliteActivity.this,
    							"3 pizzas gratuites!", Toast.LENGTH_LONG).show();
    					nbexist = nbexist - 30;
    				} else if (nbexist >= 20) {
    					Toast.makeText(FideliteActivity.this,
    							"2 pizzas gratuites!", Toast.LENGTH_LONG).show();
    					nbexist = nbexist - 20;
     
    				} else if (nbexist >= 10) {
    					Toast.makeText(FideliteActivity.this, "1 pizza gratuite!",
    							Toast.LENGTH_LONG).show();
    					nbexist = nbexist - 10;
    				} else {
    					Toast.makeText(FideliteActivity.this,
    							"Pas de pizza gratuite pour cette fois!",
    							Toast.LENGTH_LONG).show();
    				}
     
    				// calcul du nombre total de pizzas
    				int total = cli.getNbpizzatotal();
    				total = total + nbpizz;
     
    				// mis à jour de la BDD
    				cli.setNbpizzaencours(nbexist);
    				cli.setNbpizzatotal(total);
    				cliBDD.updateClient(cli.getId(), cli);
     
    				// fermeture de la BDD
    				cliBDD.close();
     
    			}
    		}
    	};
     
    	private OnClickListener detailclientListener = new OnClickListener() {
    		public void onClick(View v) {
    			Intent versDetail = new Intent(getApplicationContext(),
    					DetailClientActivity.class);
    			versDetail.putExtra("identifiant", identifiant);
    			versDetail.putExtra("nomduclient", nomduclient);
    			startActivity(versDetail);
     
    		}
    	};
     
    }
    et
    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
    public class DetailClientActivity extends FideliteActivity {
    	clientBDD cliBDD = new clientBDD(this);
    	int identifiant;
    	String nomduclient;
     
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		Bundle objetbundle = this.getIntent().getExtras();
    		identifiant = objetbundle.getInt("identifiant");
    		cliBDD.open();
    		cli = cliBDD.getClientwithId(identifiant);
    		LinearLayout LL = new LinearLayout(this);
    		TextView description = new TextView(this);
    		TextView tv = new TextView(this);
    		TextView description1 = new TextView(this);
    		TextView tv1 = new TextView(this);
    		TextView description2 = new TextView(this);
    		TextView tv2 = new TextView(this);
    		TextView description3 = new TextView(this);
    		TextView tv3 = new TextView(this);
    		TextView description4 = new TextView(this);
    		TextView tv4 = new TextView(this);
    		TextView description5 = new TextView(this);
    		TextView tv5 = new TextView(this);
    		TextView description6 = new TextView(this);
    		TextView tv6 = new TextView(this);
    		TextView description7 = new TextView(this);
    		TextView tv7 = new TextView(this);
    		TextView description8 = new TextView(this);
    		TextView tv8 = new TextView(this);
     
    		LayoutParams LLParam = new LinearLayout.LayoutParams(
    				LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
    		LayoutParams LPdes = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
    		LayoutParams LPdes1 = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv1 = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
    		LayoutParams LPdes2 = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv2 = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
    		LayoutParams LPdes3 = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv3 = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
    		LayoutParams LPdes4 = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv4 = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
    		LayoutParams LPdes5 = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv5 = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
    		LayoutParams LPdes6 = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv6 = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
    		LayoutParams LPdes7 = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv7 = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
    		LayoutParams LPdes8 = new LinearLayout.LayoutParams(
    				LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    		LayoutParams LPtv8 = new LayoutParams(LayoutParams.MATCH_PARENT,
    				LayoutParams.WRAP_CONTENT);
     
    		LL.setOrientation(LinearLayout.VERTICAL);
    		LL.setLayoutParams(LLParam);
    		description.setLayoutParams(LPdes);
    		tv.setLayoutParams(LPtv);
    		description1.setLayoutParams(LPdes1);
    		tv1.setLayoutParams(LPtv1);
    		description2.setLayoutParams(LPdes2);
    		tv2.setLayoutParams(LPtv2);
    		description3.setLayoutParams(LPdes3);
    		tv3.setLayoutParams(LPtv3);
    		description4.setLayoutParams(LPdes4);
    		tv4.setLayoutParams(LPtv4);
    		description5.setLayoutParams(LPdes5);
    		tv5.setLayoutParams(LPtv5);
    		description6.setLayoutParams(LPdes6);
    		tv6.setLayoutParams(LPtv6);
    		description7.setLayoutParams(LPdes7);
    		tv7.setLayoutParams(LPtv7);
    		description8.setLayoutParams(LPdes8);
    		tv8.setLayoutParams(LPtv8);
     
    		LL.addView(description);
    		LL.addView(tv);
    		LL.addView(description1);
    		LL.addView(tv1);
    		LL.addView(description2);
    		LL.addView(tv2);
    		LL.addView(description3);
    		LL.addView(tv3);
    		LL.addView(description4);
    		LL.addView(tv4);
    		LL.addView(description5);
    		LL.addView(tv5);
    		LL.addView(description6);
    		LL.addView(tv6);
    		LL.addView(description7);
    		LL.addView(tv7);
    		LL.addView(description8);
    		LL.addView(tv8);
     
    		description.setText("Nom : ");
    		tv.setText(cli.getNom());
    		description1.setText("Prénom : ");
    		tv1.setText(cli.getPrenom());
    		description2.setText("Adresse : ");
    		tv2.setText(cli.getAdresse());
    		description3.setText("Code Postal : ");
    		tv3.setText(cli.getCp());
    		description4.setText("Ville : ");
    		tv4.setText(cli.getVille());
    		description5.setText("Mail : ");
    		tv5.setText(cli.getMail());
    		description6.setText("Téléphone : ");
    		tv6.setText(cli.getTel());
    		description7.setText("Nombres de pizzas en cours : ");
    		tv7.setText(String.valueOf(cli.getNbpizzaencours()));
    		description8.setText("Nombres de pizzas total : ");
    		tv8.setText(String.valueOf(cli.getNbpizzatotal()));
     
    		setContentView(LL);
    		cliBDD.close();
    	}
    }
    Je comprends pas pourquoi..
    Si vous savez comment résoudre ce problème, je suis toute ouïe..


    PS: Pour ceux qui ont du mal à importer Crouton, voici un bon tutoriel : [ame="http://www.youtube.com/watch?v=X3l-zJWsBKo"]Crouton:ownload and Setup [Android Library] - YouTube[/ame]

  14. #14
    Membre régulier
    Homme Profil pro
    Inscrit en
    Mai 2013
    Messages
    70
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Mai 2013
    Messages : 70
    Points : 113
    Points
    113
    Par défaut
    oui tes extends, chaque une de tes activity hérite de celle du haut donc tu refait systématiquement un appelle au onCreate de AffichageClientActivity.

  15. #15
    Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Mai 2013
    Messages
    103
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2013
    Messages : 103
    Points : 59
    Points
    59
    Par défaut
    Merci beaucoup, c'était bien ça!! J'avais un doute en plus.. En tout cas, merci

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

Discussions similaires

  1. Problème avec les Toasts
    Par Pepito39 dans le forum Android
    Réponses: 1
    Dernier message: 11/06/2013, 10h08
  2. VC++ Direct3D8, problème avec LPD3DXFONT et LPD3DTEXTURE8
    Par Magus (Dave) dans le forum DirectX
    Réponses: 3
    Dernier message: 03/08/2002, 11h10
  3. Problème avec le type 'Corba::Any_out'
    Par Steven dans le forum CORBA
    Réponses: 2
    Dernier message: 14/07/2002, 18h48
  4. Problème avec la mémoire virtuelle
    Par Anonymous dans le forum CORBA
    Réponses: 13
    Dernier message: 16/04/2002, 16h10

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