Erebuss Blog

brtrue.s = IL000000 // powered by IL

  Home :: Contact :: Syndication  :: Login
  144 Posts :: 0 Stories :: 60 Comments :: 0 Trackbacks

Archives

Message Categories

. Hum
Météo

. PCA
PCA Foundator

.Net

Z'Autres (z pour le classement :)

Oui, Oui, vous n'avez pas rêver, le domigrille d'origine c2i un peu améliorer pour tenter la girafe sans avoir besoin de relancer vsnet à chaque fois  (avec un peu de CodeDom pour éviter le Process.Start("csc.exe") ...)

J'ai du modifier un peu la Form d'origine notamment pour la modification des PictureBox car j'en avais marre du NullException que j'avais une fois sur 2 quand je tentais d'enlever les existants pour en créer de nouveau. Résultat, maintenant ils sont tous dans un panel et j'ai juste à faire un Clear();

Bon, je vous balance le code source, j'écrirais un petit article plus détaillé plus tard sur le pourquoi du comment, mais j'ai envie que quelq'un arrive à nous faire une girafe pour Richard, comme ca il pourra présenter fièrement au MVP Summit hein ;)

(Là j'ai peur pour le code source à cause de dotText, mais on va essayé :p)

#################################

using System;

using System.Drawing;

using System.Collections;

using System.ComponentModel;

using System.Windows.Forms;

using System.Data;

using System.CodeDom;

using System.CodeDom.Compiler;

using Microsoft.CSharp;

using System.Reflection;

///

/// Description résumée de Form1.

///

///

namespace DomiTicTacToe

{

public class Form1 : System.Windows.Forms.Form

{

private System.Windows.Forms.GroupBox groupBox1;

private System.Windows.Forms.TextBox tbCode;

private System.Windows.Forms.NumericUpDown numNombre;

private System.Windows.Forms.NumericUpDown numTaille;

private System.Windows.Forms.NumericUpDown numRupture;

private System.Windows.Forms.Label lbNombrePbox;

private System.Windows.Forms.Label lbRupture;

private System.Windows.Forms.Label lbTaille;

private System.Windows.Forms.Panel pnPbox;

private System.Windows.Forms.Button btModifier;

///

/// Variable nécessaire au concepteur.

///

private System.ComponentModel.Container components = null;

public Form1()

{

//

// Requis pour la prise en charge du Concepteur Windows Forms

//

InitializeComponent();

//

// TODO : ajoutez le code du constructeur après l'appel à InitializeComponent

//

}

///

/// Nettoyage des ressources utilisées.

///

protected override void Dispose( bool disposing )

{

if( disposing )

{

if (components != null)

{

components.Dispose();

}

}

base.Dispose( disposing );

}

#region Windows Form Designer generated code

///

/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas

/// le contenu de cette méthode avec l'éditeur de code.

///

private void InitializeComponent()

{

this.tbCode = new System.Windows.Forms.TextBox();

this.btModifier = new System.Windows.Forms.Button();

this.groupBox1 = new System.Windows.Forms.GroupBox();

this.lbTaille = new System.Windows.Forms.Label();

this.lbRupture = new System.Windows.Forms.Label();

this.lbNombrePbox = new System.Windows.Forms.Label();

this.numRupture = new System.Windows.Forms.NumericUpDown();

this.numTaille = new System.Windows.Forms.NumericUpDown();

this.numNombre = new System.Windows.Forms.NumericUpDown();

this.pnPbox = new System.Windows.Forms.Panel();

this.groupBox1.SuspendLayout();

((System.ComponentModel.ISupportInitialize)(this.numRupture)).BeginInit();

((System.ComponentModel.ISupportInitialize)(this.numTaille)).BeginInit();

((System.ComponentModel.ISupportInitialize)(this.numNombre)).BeginInit();

this.SuspendLayout();

//

// tbCode

//

this.tbCode.AutoSize = false;

this.tbCode.Location = new System.Drawing.Point(160, 8);

this.tbCode.Multiline = true;

this.tbCode.Name = "tbCode";

this.tbCode.Size = new System.Drawing.Size(264, 160);

this.tbCode.TabIndex = 0;

this.tbCode.Text = @" if (Convert.ToInt32(pct.Name)%5==0) pct.BackColor=Color.AliceBlue;

if (Convert.ToInt32(pct.Name)%7==0) pct.BackColor=Color.Chartreuse;

if (Convert.ToInt32(pct.Name)%9==0) pct.BackColor=Color.DarkGoldenrod;

if (Convert.ToInt32(pct.Name)%11==0) pct.BackColor=Color.Gold;

if (Convert.ToInt32(pct.Name)%11==0) pct.BackColor=Color.Tomato;";

//

// btModifier

//

this.btModifier.Location = new System.Drawing.Point(432, 136);

this.btModifier.Name = "btModifier";

this.btModifier.TabIndex = 1;

this.btModifier.Text = "Modifier";

this.btModifier.Click += new System.EventHandler(this.button1_Click);

//

// groupBox1

//

this.groupBox1.Controls.Add(this.lbTaille);

this.groupBox1.Controls.Add(this.lbRupture);

this.groupBox1.Controls.Add(this.lbNombrePbox);

this.groupBox1.Controls.Add(this.numRupture);

this.groupBox1.Controls.Add(this.numTaille);

this.groupBox1.Controls.Add(this.numNombre);

this.groupBox1.Controls.Add(this.tbCode);

this.groupBox1.Controls.Add(this.btModifier);

this.groupBox1.Location = new System.Drawing.Point(0, 200);

this.groupBox1.Name = "groupBox1";

this.groupBox1.Size = new System.Drawing.Size(520, 168);

this.groupBox1.TabIndex = 2;

this.groupBox1.TabStop = false;

this.groupBox1.Text = "Modification Motif";

//

// lbTaille

//

this.lbTaille.Location = new System.Drawing.Point(56, 96);

this.lbTaille.Name = "lbTaille";

this.lbTaille.Size = new System.Drawing.Size(100, 24);

this.lbTaille.TabIndex = 7;

this.lbTaille.Text = " : Taille PBox";

this.lbTaille.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

//

// lbRupture

//

this.lbRupture.Location = new System.Drawing.Point(56, 72);

this.lbRupture.Name = "lbRupture";

this.lbRupture.Size = new System.Drawing.Size(100, 24);

this.lbRupture.TabIndex = 6;

this.lbRupture.Text = " : Point de Rupture";

this.lbRupture.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

//

// lbNombrePbox

//

this.lbNombrePbox.Location = new System.Drawing.Point(56, 48);

this.lbNombrePbox.Name = "lbNombrePbox";

this.lbNombrePbox.Size = new System.Drawing.Size(100, 24);

this.lbNombrePbox.TabIndex = 5;

this.lbNombrePbox.Text = " : Nombre de PBox";

this.lbNombrePbox.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;

//

// numRupture

//

this.numRupture.Location = new System.Drawing.Point(8, 72);

this.numRupture.Maximum = new System.Decimal(new int[] {

200,

0,

0,

0});

this.numRupture.Name = "numRupture";

this.numRupture.Size = new System.Drawing.Size(48, 20);

this.numRupture.TabIndex = 4;

this.numRupture.Value = new System.Decimal(new int[] {

7,

0,

0,

0});

//

// numTaille

//

this.numTaille.Location = new System.Drawing.Point(8, 96);

this.numTaille.Maximum = new System.Decimal(new int[] {

40,

0,

0,

0});

this.numTaille.Name = "numTaille";

this.numTaille.Size = new System.Drawing.Size(48, 20);

this.numTaille.TabIndex = 3;

this.numTaille.Value = new System.Decimal(new int[] {

20,

0,

0,

0});

//

// numNombre

//

this.numNombre.Location = new System.Drawing.Point(8, 48);

this.numNombre.Maximum = new System.Decimal(new int[] {

500,

0,

0,

0});

this.numNombre.Name = "numNombre";

this.numNombre.Size = new System.Drawing.Size(48, 20);

this.numNombre.TabIndex = 2;

this.numNombre.Value = new System.Decimal(new int[] {

49,

0,

0,

0});

//

// pnPbox

//

this.pnPbox.Location = new System.Drawing.Point(0, 0);

this.pnPbox.Name = "pnPbox";

this.pnPbox.Size = new System.Drawing.Size(528, 200);

this.pnPbox.TabIndex = 3;

//

// Form1

//

this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);

this.ClientSize = new System.Drawing.Size(526, 371);

this.Controls.Add(this.pnPbox);

this.Controls.Add(this.groupBox1);

this.Name = "Form1";

this.Text = "DomiGrille";

this.Load += new System.EventHandler(this.Form1_Load);

this.groupBox1.ResumeLayout(false);

((System.ComponentModel.ISupportInitialize)(this.numRupture)).EndInit();

((System.ComponentModel.ISupportInitialize)(this.numTaille)).EndInit();

((System.ComponentModel.ISupportInitialize)(this.numNombre)).EndInit();

this.ResumeLayout(false);

}

#endregion

///

/// Point d'entrée principal de l'application.

///

[STAThread]

static void Main()

{

Application.Run(new Form1());

}

private void Form1_Load(object sender, System.EventArgs e)

{

addPict(this.pnPbox.Controls,49,new Size(20,20),new Point(14,14),7);

}

private void addPict(Control.ControlCollection Ctrls, int iNbPict,

Size LaTaille, Point AquelEndroit, int Rupture)

{

int Rangee=AquelEndroit.X,Colonne=AquelEndroit.Y;

for (int i=1;i<=iNbPict;i++)

{

PictureBox b=new PictureBox();

b.Name=i.ToString();// pas oblig.

b.Size=LaTaille;

b.BackColor=Color.White;

b.BorderStyle=BorderStyle.FixedSingle;

b.Click+=new EventHandler(ClickSurPict);

b.Location=new Point(Colonne,Rangee);

Ctrls.Add(b);

Colonne+=b.Width;

if (i%Rupture==0)

{

Colonne=AquelEndroit.Y;//retour colonne de départ

Rangee+=b.Height;

}

}

}

// procédure d'évenement

private void ClickSurPict(object sender, System.EventArgs e)

{

MessageBox.Show(((PictureBox)sender).Name);

}

private void button1_Click(object sender, System.EventArgs e)

{

RegenerationPBox(); // panel de PictureBox

GenerationCouleur(); // coloriage des Pictures Box

}

private void GenerationCouleur()

{

// On compilera du C# hein ;)

CSharpCodeProvider codeProvider = new CSharpCodeProvider();

ICodeCompiler compiler = codeProvider.CreateCompiler();

// Parmètres qu'on passera au compilateur

System.CodeDom.Compiler.CompilerParameters parameters = new CompilerParameters();

parameters.GenerateInMemory = true; // On gardera l'assembly uniquement en mémoire

// DLL Story pour la compilation

parameters.ReferencedAssemblies.Add("System.dll");

parameters.ReferencedAssemblies.Add("System.Drawing.dll");

parameters.ReferencedAssemblies.Add("System.Windows.Forms.dll");

parameters.ReferencedAssemblies.Add("System.Data.dll");

// Source du Code pour la compilation

// Il sera plus interessant de le mettre dans un fichier à part et de le lire

// Mais bon, à 1H du mat, j'avais la flemme :p

string codeAgenerer = @"using System;

using System.Drawing;

using System.Collections;

using System.ComponentModel;

using System.Windows.Forms;

using System.Data;

namespace DomiTicTacToe{

public class CDTic {

System.Windows.Forms.Form parentForm;

public CDTic(System.Windows.Forms.Form mForm){

parentForm = mForm;

GenereTic();}

private void GenereTic(){

foreach ( Control pct in ((Panel)parentForm.GetChildAtPoint(new Point(20,20))).Controls){

if(pct.GetType().ToString() == ""System.Windows.Forms.PictureBox""){";

// On ajoute le code inséré dans la TextBox et on ferme la source :)

codeAgenerer = String.Concat(codeAgenerer,tbCode.Text,"}}}}}");

//On Compile

CompilerResults cr = compiler.CompileAssemblyFromSource(parameters, codeAgenerer);

// on regarde si il y a des erreurs

if (cr.Errors.Count > 0)

{

//On affiche toutes les erreurs

foreach(CompilerError CompErr in cr.Errors)

{

MessageBox.Show("Ligne " + CompErr.Line + ", Erreur Numero : " + CompErr.ErrorNumber + ", '" + CompErr.ErrorText + ";" + Environment.NewLine + Environment.NewLine);

}

}

else // On tente d'utiliser l'assembly

{

try

{

// On récupère l'assembly en mémoire

Assembly asm = cr.CompiledAssembly;

// On récupère son Type

Type t = asm.GetType("DomiTicTacToe.CDTic");

// Flags pour la construction d'une instance de l'object

BindingFlags bflags = BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance;

// Construit une instance de l'Object (noté le passage d'argument au constructeur à la fin

Object obj = t.InvokeMember("CDTic", bflags |

BindingFlags.CreateInstance, null, null, new object[]{this});

}

catch(Exception eX)

{

MessageBox.Show(eX.Message,"Oooops",MessageBoxButtons.OK,MessageBoxIcon.Error);

}

}

}

private void RegenerationPBox()

{

// On vide le panel ;)

// C'est toujours mieux que de faire un Foreach sur This.Controls et de se retrouver avec une null Exception :p

this.pnPbox.Controls.Clear();

// Alors la, cest la ligne inmangeable !

addPict(this.pnPbox.Controls, Convert.ToInt32(numNombre.Value), new Size(Convert.ToInt32(numTaille.Value),Convert.ToInt32(numTaille.Value)),new Point(10,10), Convert.ToInt32(numRupture.Value));

}

}

}

########################
Bon Amusement ;)

posted on samedi 27 mars 2004 12:48

Feedback

# re: DomiGrille avec Reflection 27/03/2004 20:04 Bravo
Tu as gagné le prix du post le plus long...

Le premier prix étant un KeyBinder (ctrl+c;ctrl+v):D

Batswirl

# re: DomiGrille avec Reflection 07/06/2006 16:08 1188
http://huanxi8.web.fc2.com/chengrenltan.htm
http://huanxi8.web.fc2.com/cherxs.htm
http://huanxi8.web.fc2.com/huangslt.htm
http://huanxi8.web.fc2.com/huangswz.htm
http://huanxi8.web.fc2.com/huangsxs.htm
http://huanxi8.web.fc2.com/huansedy.htm
http://huanxi8.web.fc2.com/jqxdy.htm
http://huanxi8.web.fc2.com/sanjipian.htm
http://huanxi8.web.fc2.com/seqlt.htm
http://huanxi8.web.fc2.com/seqshuo.htm
http://huanxi8.web.fc2.com/seqwz.htm
http://huanxi8.web.fc2.com/shengrendy.htm
http://huanxi8.web.fc2.com/sqdiany.htm
http://huanxi8.web.fc2.com/xady.htm
http://huanxi8.web.fc2.com/xaltan.htm
http://huanxi8.web.fc2.com/zip.htm
http://huanxi8.web.fc2.com/zoug.htm

http://www.angelfire.com/planet/smppdy/3film.htm
http://www.angelfire.com/planet/smppdy/asaxvgt.htm
http://www.angelfire.com/planet/smppdy/ascec.htm
http://www.angelfire.com/planet/smppdy/asgfbgf.htm
http://www.angelfire.com/planet/smppdy/asr53.htm
http://www.angelfire.com/planet/smppdy/crltan.htm
http://www.angelfire.com/planet/smppdy/crxiaos.htm
http://www.angelfire.com/planet/smppdy/dsdd.htm
http://www.angelfire.com/planet/smppdy/jwt520.htm
http://www.angelfire.com/planet/smppdy/mffilm.htm
http://www.angelfire.com/planet/smppdy/mfmovie.htm
http://www.angelfire.com/planet/smppdy/mnsp.htm
http://www.angelfire.com/planet/smppdy/movies.htm
http://www.angelfire.com/planet/smppdy/ouyt.htm
http://www.angelfire.com/planet/smppdy/sexwz.htm
http://www.angelfire.com/planet/smppdy/sqtupian.htm
http://www.angelfire.com/planet/smppdy/sqxs.htm
http://www.angelfire.com/planet/smppdy/ssdd.htm
http://www.angelfire.com/planet/smppdy/story.htm
http://www.angelfire.com/planet/smppdy/uht.htm
http://www.angelfire.com/planet/smppdy/xingdy.htm





# re: DomiGrille avec Reflection 19/06/2006 04:42 1188
http://smsfilm.blogs.eurosport.com/files/chengrenltan.htm
http://smsfilm.blogs.eurosport.com/files/cherxs.htm
http://smsfilm.blogs.eurosport.com/files/huangslt.htm
http://smsfilm.blogs.eurosport.com/files/huangswz.htm
http://smsfilm.blogs.eurosport.com/files/huangsxs.htm
http://smsfilm.blogs.eurosport.com/files/huansedy.htm
http://smsfilm.blogs.eurosport.com/files/jqxdy.htm
http://smsfilm.blogs.eurosport.com/files/sanjipian.htm
http://smsfilm.blogs.eurosport.com/files/seqlt.htm
http://smsfilm.blogs.eurosport.com/files/seqshuo.htm
http://smsfilm.blogs.eurosport.com/files/seqwz.htm
http://smsfilm.blogs.eurosport.com/files/shengrendy.htm
http://smsfilm.blogs.eurosport.com/files/sqdiany.htm
http://smsfilm.blogs.eurosport.com/files/xady.htm
http://smsfilm.blogs.eurosport.com/files/xaltan.htm
http://smsfilm.blogs.eurosport.com/files/zip.htm
http://smsfilm.blogs.eurosport.com/files/zoug.htm




# re: DomiGrille avec Reflection 31/07/2006 04:30 fdg
http://www.blogstudio.com/ppgirl16/xx01.html http://ppdy201.googlepages.com/xx01.htm
http://www.blogstudio.com/ppgirl16/xx02.html http://ppdy201.googlepages.com/xx02.htm
http://www.blogstudio.com/ppgirl16/xx03.html http://ppdy201.googlepages.com/xx03.htm
http://www.blogstudio.com/ppgirl16/xx04.html http://ppdy201.googlepages.com/xx04.htm
http://www.blogstudio.com/ppgirl16/xx05.html http://ppdy201.googlepages.com/xx05.htm
http://www.blogstudio.com/ppgirl16/xx06.html http://ppdy201.googlepages.com/xx06.htm
http://www.blogstudio.com/ppgirl16/xx07.html http://ppdy201.googlepages.com/xx07.htm
http://www.blogstudio.com/ppgirl16/xx08.html http://ppdy201.googlepages.com/xx08.htm
http://www.blogstudio.com/ppgirl16/xx09.html http://ppdy201.googlepages.com/xx09.htm
http://www.blogstudio.com/ppgirl16/xx10.html http://ppdy201.googlepages.com/xx10.htm
http://www.blogstudio.com/ppgirl16/xx11.html http://ppdy201.googlepages.com/xx11.htm
http://www.blogstudio.com/ppgirl16/xx12.html http://ppdy201.googlepages.com/xx12.htm
http://www.blogstudio.com/ppgirl16/xx13.html http://ppdy201.googlepages.com/xx13.htm
http://www.blogstudio.com/ppgirl16/xx14.html http://ppdy201.googlepages.com/xx14.htm
http://www.blogstudio.com/ppgirl16/xx15.html http://ppdy201.googlepages.com/xx15.htm
http://www.blogstudio.com/ppgirl16/xx16.html http://ppdy201.googlepages.com/xx16.htm
http://www.blogstudio.com/ppgirl16/xx17.html http://ppdy201.googlepages.com/xx17.htm
http://www.blogstudio.com/ppgirl16/xx18.html http://ppdy201.googlepages.com/xx18.htm
http://www.blogstudio.com/ppgirl16/xx19.html http://ppdy201.googlepages.com/xx19.htm
http://www.blogstudio.com/ppgirl16/xx20.html http://ppdy201.googlepages.com/xx20.htm
http://www.blogstudio.com/ppgirl16/xx21.html http://ppdy201.googlepages.com/xx21.htm
http://www.blogstudio.com/ppgirl16/xx22.html http://ppdy201.googlepages.com/xx22.htm
http://www.blogstudio.com/ppgirl16/xx23.html http://ppdy201.googlepages.com/xx23.htm
http://www.blogstudio.com/ppgirl16/xx24.html http://ppdy201.googlepages.com/xx24.htm
http://www.blogstudio.com/ppgirl16/xx25.html http://ppdy201.googlepages.com/xx25.htm
http://www.blogstudio.com/ppgirl16/xx26.html http://ppdy201.googlepages.com/xx26.htm
http://www.blogstudio.com/ppgirl16/xx27.html http://ppdy201.googlepages.com/xx27.htm
http://www.blogstudio.com/ppgirl16/xx28.html http://ppdy201.googlepages.com/xx29.htm
http://www.blogstudio.com/ppgirl16/xx29.html http://ppdy201.googlepages.com/xx30.htm
http://www.blogstudio.com/ppgirl16/xx59.html http://www.blogstudio.com/ppgirl16/xx68.html
http://www.blogstudio.com/ppgirl16/xx60.html http://www.blogstudio.com/ppgirl16/xx69.html
http://www.blogstudio.com/ppgirl16/xx61.html http://www.blogstudio.com/ppgirl16/xx71.html
http://www.blogstudio.com/ppgirl16/xx62.html http://www.blogstudio.com/ppgirl16/xx72.html
http://www.blogstudio.com/ppgirl16/xx63.html http://www.blogstudio.com/ppgirl16/xx73.html
http://www.blogstudio.com/ppgirl16/xx64.html http://www.blogstudio.com/ppgirl16/xx74.html
http://www.blogstudio.com/ppgirl16/xx65.html http://www.blogstudio.com/ppgirl16/xx75.html
http://www.blogstudio.com/ppgirl16/xx66.html http://www.blogstudio.com/ppgirl16/xx76.html
http://www.blogstudio.com/ppgirl16/xx67.html http://www.blogstudio.com/ppgirl16/xx77.html
http://www.blogstudio.com/ppgirl16/xx79.html http://www.blogstudio.com/ppgirl16/xx78.html


# re: DomiGrille avec Reflection 07/12/2006 11:09 qwerty
http://www.gordos-gay-gratis.xxx-culiadas.com II http://www.cuadro-nenas-desvirgadas.xxx-culiadas.com II http://www.gals-nere.vecchiecalde.com II http://www.grossi-capezzoli-sexo.vecchiecalde.com II http://www.sexo-paula-conte.strettasesso.com II http://www.mpeg-putas-lindas.strettasesso.com II http://www.mpg-peruanas-putas.sessobelli.com II http://www.sesso-lesbico-fotos.sessobelli.com II http://www.tetonas-venezolanas-pics.sess0.net II http://www.gif-modelle-giapponesi.sess0.net II http://www.svenska-webcam-tjejer.seksi-fitta.com II http://www.svenske-aviser.seksi-fitta.com II http://www.interracial-candy.putitanina.com II http://www.video-putas-macizas.putitanina.com II http://www.pecorina-mpg.penissesso.com II http://www.cuadro-troie-grasse.penissesso.com II http://www.cuadro-porca-cayenne.peniscaldo.com II http://www.cuadros-adolescenti-hard.peniscaldo.com II http://www.sexigt-hakan-peker.penis-kalu.com II http://www.old-bukkake-kela.penis-kalu.com II http://www.korea-beibit-tupla-penetraatio.matala-pimppi.com II http://www.bilde-norsk-voyeur.matala-pimppi.com II http://www.bilde-rampete-lesbisk.kuvia-porno.com II http://www.filmrull-sexy-rype.kuvia-porno.com II http://www.tranny-surprise-clip.jovencitas-playa.com II http://www.gals-morbosidad.jovencitas-playa.com II http://www.teen-nuda-foto.freeclassicgay.com II http://www.foto-piedi-donna.freeclassicgay.com II http://www.miellyttava-koulutytto-striptease.fittaknull.com II http://www.rauhassa-ekshibitionistit.fittaknull.com II http://www.amori-lesbici-pic.dildosesso.com II http://www.studentesse-sverginate-cuadro.dildosesso.com II http://www.lolitas-peruanas-mpeg.dildogigante.com II http://www.mpgs-chicas-universitarias.dildogigante.com II http://www.foto-de-cortes.culiadasfilm.com II http://www.lesbianas-strap.culiadasfilm.com II http://www.coalaos-amateur-foto.clip-putita-xxx.com II http://www.relato-travesti-gals.clip-putita-xxx.com II http://www.videos-infantiles-trailer.asiaticosesso.com II http://www.piccole-puttane-trailer.asiaticosesso.com II

# re: DomiGrille avec Reflection 28/12/2006 18:37 aka
http://www.grandi-fesse.noekpe16.info webcam diciottenni http://www.vacche-e-troione.moekpe16.info intimissimi corto immagini http://www.diciottenni-scopano-gratis.koekpe16.info pompini spagnolette http://www.le-sorelle-materassi.loekpe16.info gallery superdotati http://www.gay-muscolosi.eroop16.info amatoriali golose

# re: DomiGrille avec Reflection 22/05/2008 02:42 Komedi
Komedi - Komik - Mizah - Fikra, Fikralar, Fikra oku, Karikatür, Komik Karikatürler, Animasyon,
Komik Animasyonlar, Karikatür, Komik Karikatürler, Oyun, Komik Oyunlar,Video, Video izle, Komik Videolar,
Resim, Komik Resimler, Hikaye oku, Hikayeler http://www.komedi.gen.tr Komik Mizah Sitesi..
Sohbet, Chat, http://www.sohbetkalp.net Muhabbet http://www.chatcix.com Chatcix Sohbet odalari..
http://www.beyazdus.net Mynet Sohbet, Mynet Chat http://www.mynetci.com Mynet Sohbet Odalari..
Fikra, Fikralar, Fikra oku, Hikayeler, Resimler http://www.fikraturk.net Fikra sitesi..

Post Feedback

Title:
Name:
Url:
Comments: 
Enter the code you see: