Accueil > > > CLASSE POUR CONNEXION À UN SERVEUR POP3 ET CHARGER LES EMAILS
CLASSE POUR CONNEXION À UN SERVEUR POP3 ET CHARGER LES EMAILS
Information sur la source
Description
Voici une classe qui permet de se connecter à un serveur POP3 défini par l'utilisateur. Cette classe va charger les e-mails en attente sur le serveur ainsi que les pièces jointes. Bon, il n'est pas parfait, mais comme j'ai vu qu'il y avait pas mal de post sur le forum au sujet de la réception des mails, j'espère que ce début pourra vous aider. Je vous invite d'ailleurs à le modifier selon vos besoins...
Source
- using System;
- using System.IO;
- using System.Web.Mail;
- using System.Collections;
- using System.Windows.Forms;
- using System.Net.Sockets;
-
-
-
- namespace PopMail
- {
-
- public class PopMailsCollections
- {
- private System.Net.Sockets.TcpClient co;
- private System.Net.Sockets.NetworkStream ns;
- private System.IO.StreamReader sr;
- private string Server;
- private string User;
- private string PassWord;
- public PopMail [] MailCollections;
-
- public PopMailsCollections(string ServerName, string UserName, string PassWord)
- {
- this.Server = ServerName;
- this.User = UserName;
- this.PassWord = PassWord;
- this.Connection();
- }
-
- public PopMail GetMail(int i)
- {
- return MailCollections[i];
- }
-
- public int Count()
- {
- return this.MailCollections.Length;
- }
-
- private void Connection()
- {
-
- int NbMail = 0;
- string sOut = "user " + this.User + "\r\n";
-
- try
- {
- co = new TcpClient(this.Server ,110);
- ns = co.GetStream();
- sr = new StreamReader(ns);
- SendStream(sOut);
- sr.ReadLine();
- sr.ReadLine();
- sOut = "pass " + this.PassWord + "\r\n";
- SendStream(sOut);
- if((sr.ReadLine().ToString()).Substring(0,4) != "-ERR" )
- {
- NbMail = RecupMsgInfo(1);
- this.MailCollections = new PopMail[NbMail];
- RecevoirMessage(NbMail);
- }
- else
- MessageBox.Show("Identification refusée !", "Erreur", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- catch(ArgumentNullException e)
- {
- MessageBox.Show("Erreur lors de la connexion au serveur.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- catch (SocketException e)
- {
- MessageBox.Show("Erreur lors de la connexion au serveur.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- this.sr.Close();
- this.ns.Close();
- this.co.Close();
- }
-
- private void SendStream(string s)
- {
- byte[] FluxSortant;
- ns.Write(FluxSortant=EncodeByte(s),0,FluxSortant.Length);
- }
-
- private byte[] EncodeByte(string s)
- {
- return System.Text.ASCIIEncoding.ASCII.GetBytes(s);
- }
-
- private int RecupMsgInfo(int iMode, params int[] i)
- {
- string FluxSortant = "";
- string sTempLigne = "+OK ";
-
- switch(iMode)
- {
- case 1:
- FluxSortant="stat\r\n";
- break;
-
- case 2:
- FluxSortant="list " + i[0].ToString() +"\r\n";
- break;
- }
-
- string[] sTemp={"0"};
- try
- {
- do
- {
- SendStream(FluxSortant);
- sTempLigne = sr.ReadLine();
- sTemp = sTempLigne.Split(' ');
- } while((sTempLigne == "+OK "));
- }
- catch(SocketException e)
- {
- MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- catch(ArgumentNullException e)
- {
- MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
-
- try
- {
- return int.Parse(sTemp[1]);
- }
- catch
- {
- return 0;
- }
- }
-
- private void RecevoirMessage(int Nombre)
- {
- try
- {
- for(int i = Nombre; i>0; i--)
- {
- int iTailleMsg = RecupMsgInfo(2, i);
- SendStream("retr " + i.ToString() + "\r\n");
- this.InfoParMail(iTailleMsg, i-1);
- }
- }
- catch(SocketException e)
- {
- MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- catch(ArgumentNullException e)
- {
- MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- }
-
- private void InfoParMail(int iTaille, int IdMessage)
- {
- string BodyString;
- BodyMessage BodyTemp = new BodyMessage();
- Attachements CurrentFile;
- PopMail CurrentMail = new PopMail(IdMessage);
- CurrentMail.Size = iTaille;
- bool Base64Code = false;
- string FileName="";
- ArrayList FileCode = new ArrayList();
- string sTemp = sr.ReadLine();
- string sTemp2;
- string sTemp3;
- try
- {
- if(sTemp != "-")
- {
- sTemp = sr.ReadLine();
-
- while(sTemp != ".")
- {
- if(sTemp.Length != 0)
- {
- if(sTemp.Length >= 3)
- {
- if(sTemp.Substring(0, 3) == "To:")
- CurrentMail.To = sTemp.Substring(3,sTemp.Length-3);
- if(sTemp.Substring(0, 3) == "Cc:")
- CurrentMail.Cc = sTemp.Substring(3,sTemp.Length-3);
- }
- if(sTemp.Length >= 5)
- {
- if(sTemp.Substring(0, 5) == "From:")
- CurrentMail.From = sTemp.Substring(5,sTemp.Length-5);
- if(sTemp.Substring(0, 5) == "Date:")
- CurrentMail.Date = sTemp.Substring(5,sTemp.Length-5);
- }
- if(sTemp.Length >= 8)
- {
- if(sTemp.Substring(0, 8) == "Subject:")
- CurrentMail.Subject = sTemp.Substring(8,sTemp.Length-8);
- }
- if(sTemp.IndexOf("Content-Type:") != -1)
- {
- sr.ReadLine();
- if((sTemp2 = sr.ReadLine()).IndexOf("Content-Transfer-Encoding:") != -1)
- {
- sTemp3 = sr.ReadLine();
- if(sTemp3 == "")
- {
- BodyString = "";
- if(sTemp.Substring(13,sTemp.Length-13) == "text/plain;")
- BodyTemp.BodyFormat = System.Web.Mail.MailFormat.Text;
- else if(sTemp.Substring(13,sTemp.Length-13) == "text/html;")
- BodyTemp.BodyFormat = System.Web.Mail.MailFormat.Html;
-
- while((sTemp2 = sr.ReadLine()).IndexOf("------=_NextPart") == -1)
- {
- BodyString += sTemp2 + "\n";
- }
- BodyTemp.Body = BodyString;
- CurrentMail.Bodies.Add(BodyTemp);
- }
- else if(sTemp3 == "Content-Disposition: attachment;")
- {
- if(sTemp2.Substring(27, sTemp2.Length - 27) == "quoted-printable")
- {
- Base64Code = false;
- }
- else if(sTemp2.Substring(27, sTemp2.Length-27) == "base64")
- {
- Base64Code = true;
- }
- sTemp = sr.ReadLine();
- FileName = sTemp.Substring(13, sTemp.Length - 14);
-
- sr.ReadLine();
- while((sTemp = sr.ReadLine()) != "")
- FileCode.Add(sTemp);
- CurrentFile = new Attachements(FileName, FileCode, Base64Code);
- CurrentMail.Enjoigned.Add(CurrentFile);
- }
- }
- }
- }
- sTemp = sr.ReadLine();
- }
- this.MailCollections[IdMessage] = CurrentMail;
- }
- }
- catch(SocketException e)
- {
- MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- catch(ArgumentNullException e)
- {
- MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
- }
- }
-
-
- }
-
- public class PopMail
- {
- private int IdMail;
- public ArrayList Bodies;
- public string Cc;
- public string Date;
- public string From;
- public int Size;
- public string Subject;
- public string To;
- public ArrayList Enjoigned;
-
- public PopMail(int ID)
- {
- this.Bodies = new ArrayList();
- this.Enjoigned = new ArrayList();
- this.IdMail = ID;
- }
-
- public PopMail()
- {}
-
- }
-
- public class Attachements
- {
- private string FileName;
- private System.Collections.ArrayList CodeFile;
- private bool Base64Coding;
- private System.Windows.Forms.SaveFileDialog SaveDialog;
- /// <summary>
- /// public Attachements(string FileName, ArrayList Code, bool Base64)
- /// </summary>
- public Attachements(string FileName, ArrayList Code, bool Base64)
- {
- this.CodeFile = Code;
- this.FileName = FileName;
- this.Base64Coding = Base64;
- this.SaveDialog = new System.Windows.Forms.SaveFileDialog();
- this.SaveDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.SaveDialogOk);
- this.SaveDialog.FileName = this.FileName;
- }
-
- public void SaveFile()
- {
- this.SaveDialog.ShowDialog();
- }
-
- private void Base64Decode(string sChemin)
- {
- try
- {
- FileStream fFichier = new FileStream(sChemin, FileMode.CreateNew);
- BinaryWriter w = new BinaryWriter(fFichier);
- for(int i=0; i < this.CodeFile.Count; i++)
- w.Write(System.Convert.FromBase64String(this.CodeFile[i].ToString()));
- w.Close();
- fFichier.Close();
- }
- catch
- {
- if(MessageBox.Show("Une erreur s'est produite lors de l'enregistrement de la pièce jointe.", "Erreur d'enregistrement", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error) == DialogResult.Retry)
- this.Base64Decode(sChemin);
- }
- }
-
-
- void SaveDialogOk(object sender, System.ComponentModel.CancelEventArgs e)
- {
- if(this.Base64Coding)
- this.Base64Decode(this.SaveDialog.FileName);
- else
- {
- try
- {
- FileStream fFichier = new FileStream(this.SaveDialog.FileName, FileMode.CreateNew);
- BinaryWriter w = new BinaryWriter(fFichier);
- for(int i=0; i < this.CodeFile.Count; i++)
- w.Write(System.Convert.FromBase64String(this.CodeFile[i].ToString()));
- w.Close();
- fFichier.Close();
- }
- catch
- {
- if(MessageBox.Show("Une erreur s'est produite lors de l'enregistrement de la pièce jointe.", "Erreur d'enregistrement", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error) == DialogResult.Retry)
- this.SaveDialogOk(sender, e);
- }
- }
- }
-
- public string GetName()
- {
- return this.FileName;
- }
-
- }
-
- public struct BodyMessage
- {
- public string Body;
- public System.Web.Mail.MailFormat BodyFormat;
- };
-
-
-
-
- }
using System;
using System.IO;
using System.Web.Mail;
using System.Collections;
using System.Windows.Forms;
using System.Net.Sockets;
namespace PopMail
{
public class PopMailsCollections
{
private System.Net.Sockets.TcpClient co;
private System.Net.Sockets.NetworkStream ns;
private System.IO.StreamReader sr;
private string Server;
private string User;
private string PassWord;
public PopMail [] MailCollections;
public PopMailsCollections(string ServerName, string UserName, string PassWord)
{
this.Server = ServerName;
this.User = UserName;
this.PassWord = PassWord;
this.Connection();
}
public PopMail GetMail(int i)
{
return MailCollections[i];
}
public int Count()
{
return this.MailCollections.Length;
}
private void Connection()
{
int NbMail = 0;
string sOut = "user " + this.User + "\r\n";
try
{
co = new TcpClient(this.Server ,110);
ns = co.GetStream();
sr = new StreamReader(ns);
SendStream(sOut);
sr.ReadLine();
sr.ReadLine();
sOut = "pass " + this.PassWord + "\r\n";
SendStream(sOut);
if((sr.ReadLine().ToString()).Substring(0,4) != "-ERR" )
{
NbMail = RecupMsgInfo(1);
this.MailCollections = new PopMail[NbMail];
RecevoirMessage(NbMail);
}
else
MessageBox.Show("Identification refusée !", "Erreur", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
catch(ArgumentNullException e)
{
MessageBox.Show("Erreur lors de la connexion au serveur.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
catch (SocketException e)
{
MessageBox.Show("Erreur lors de la connexion au serveur.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
this.sr.Close();
this.ns.Close();
this.co.Close();
}
private void SendStream(string s)
{
byte[] FluxSortant;
ns.Write(FluxSortant=EncodeByte(s),0,FluxSortant.Length);
}
private byte[] EncodeByte(string s)
{
return System.Text.ASCIIEncoding.ASCII.GetBytes(s);
}
private int RecupMsgInfo(int iMode, params int[] i)
{
string FluxSortant = "";
string sTempLigne = "+OK ";
switch(iMode)
{
case 1:
FluxSortant="stat\r\n";
break;
case 2:
FluxSortant="list " + i[0].ToString() +"\r\n";
break;
}
string[] sTemp={"0"};
try
{
do
{
SendStream(FluxSortant);
sTempLigne = sr.ReadLine();
sTemp = sTempLigne.Split(' ');
} while((sTempLigne == "+OK "));
}
catch(SocketException e)
{
MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
catch(ArgumentNullException e)
{
MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
try
{
return int.Parse(sTemp[1]);
}
catch
{
return 0;
}
}
private void RecevoirMessage(int Nombre)
{
try
{
for(int i = Nombre; i>0; i--)
{
int iTailleMsg = RecupMsgInfo(2, i);
SendStream("retr " + i.ToString() + "\r\n");
this.InfoParMail(iTailleMsg, i-1);
}
}
catch(SocketException e)
{
MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
catch(ArgumentNullException e)
{
MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void InfoParMail(int iTaille, int IdMessage)
{
string BodyString;
BodyMessage BodyTemp = new BodyMessage();
Attachements CurrentFile;
PopMail CurrentMail = new PopMail(IdMessage);
CurrentMail.Size = iTaille;
bool Base64Code = false;
string FileName="";
ArrayList FileCode = new ArrayList();
string sTemp = sr.ReadLine();
string sTemp2;
string sTemp3;
try
{
if(sTemp != "-")
{
sTemp = sr.ReadLine();
while(sTemp != ".")
{
if(sTemp.Length != 0)
{
if(sTemp.Length >= 3)
{
if(sTemp.Substring(0, 3) == "To:")
CurrentMail.To = sTemp.Substring(3,sTemp.Length-3);
if(sTemp.Substring(0, 3) == "Cc:")
CurrentMail.Cc = sTemp.Substring(3,sTemp.Length-3);
}
if(sTemp.Length >= 5)
{
if(sTemp.Substring(0, 5) == "From:")
CurrentMail.From = sTemp.Substring(5,sTemp.Length-5);
if(sTemp.Substring(0, 5) == "Date:")
CurrentMail.Date = sTemp.Substring(5,sTemp.Length-5);
}
if(sTemp.Length >= 8)
{
if(sTemp.Substring(0, 8) == "Subject:")
CurrentMail.Subject = sTemp.Substring(8,sTemp.Length-8);
}
if(sTemp.IndexOf("Content-Type:") != -1)
{
sr.ReadLine();
if((sTemp2 = sr.ReadLine()).IndexOf("Content-Transfer-Encoding:") != -1)
{
sTemp3 = sr.ReadLine();
if(sTemp3 == "")
{
BodyString = "";
if(sTemp.Substring(13,sTemp.Length-13) == "text/plain;")
BodyTemp.BodyFormat = System.Web.Mail.MailFormat.Text;
else if(sTemp.Substring(13,sTemp.Length-13) == "text/html;")
BodyTemp.BodyFormat = System.Web.Mail.MailFormat.Html;
while((sTemp2 = sr.ReadLine()).IndexOf("------=_NextPart") == -1)
{
BodyString += sTemp2 + "\n";
}
BodyTemp.Body = BodyString;
CurrentMail.Bodies.Add(BodyTemp);
}
else if(sTemp3 == "Content-Disposition: attachment;")
{
if(sTemp2.Substring(27, sTemp2.Length - 27) == "quoted-printable")
{
Base64Code = false;
}
else if(sTemp2.Substring(27, sTemp2.Length-27) == "base64")
{
Base64Code = true;
}
sTemp = sr.ReadLine();
FileName = sTemp.Substring(13, sTemp.Length - 14);
sr.ReadLine();
while((sTemp = sr.ReadLine()) != "")
FileCode.Add(sTemp);
CurrentFile = new Attachements(FileName, FileCode, Base64Code);
CurrentMail.Enjoigned.Add(CurrentFile);
}
}
}
}
sTemp = sr.ReadLine();
}
this.MailCollections[IdMessage] = CurrentMail;
}
}
catch(SocketException e)
{
MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
catch(ArgumentNullException e)
{
MessageBox.Show("Erreur lors du chargement des messages.\n"+ e.ToString(), "Erreur de connexion", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
public class PopMail
{
private int IdMail;
public ArrayList Bodies;
public string Cc;
public string Date;
public string From;
public int Size;
public string Subject;
public string To;
public ArrayList Enjoigned;
public PopMail(int ID)
{
this.Bodies = new ArrayList();
this.Enjoigned = new ArrayList();
this.IdMail = ID;
}
public PopMail()
{}
}
public class Attachements
{
private string FileName;
private System.Collections.ArrayList CodeFile;
private bool Base64Coding;
private System.Windows.Forms.SaveFileDialog SaveDialog;
/// <summary>
/// public Attachements(string FileName, ArrayList Code, bool Base64)
/// </summary>
public Attachements(string FileName, ArrayList Code, bool Base64)
{
this.CodeFile = Code;
this.FileName = FileName;
this.Base64Coding = Base64;
this.SaveDialog = new System.Windows.Forms.SaveFileDialog();
this.SaveDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.SaveDialogOk);
this.SaveDialog.FileName = this.FileName;
}
public void SaveFile()
{
this.SaveDialog.ShowDialog();
}
private void Base64Decode(string sChemin)
{
try
{
FileStream fFichier = new FileStream(sChemin, FileMode.CreateNew);
BinaryWriter w = new BinaryWriter(fFichier);
for(int i=0; i < this.CodeFile.Count; i++)
w.Write(System.Convert.FromBase64String(this.CodeFile[i].ToString()));
w.Close();
fFichier.Close();
}
catch
{
if(MessageBox.Show("Une erreur s'est produite lors de l'enregistrement de la pièce jointe.", "Erreur d'enregistrement", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error) == DialogResult.Retry)
this.Base64Decode(sChemin);
}
}
void SaveDialogOk(object sender, System.ComponentModel.CancelEventArgs e)
{
if(this.Base64Coding)
this.Base64Decode(this.SaveDialog.FileName);
else
{
try
{
FileStream fFichier = new FileStream(this.SaveDialog.FileName, FileMode.CreateNew);
BinaryWriter w = new BinaryWriter(fFichier);
for(int i=0; i < this.CodeFile.Count; i++)
w.Write(System.Convert.FromBase64String(this.CodeFile[i].ToString()));
w.Close();
fFichier.Close();
}
catch
{
if(MessageBox.Show("Une erreur s'est produite lors de l'enregistrement de la pièce jointe.", "Erreur d'enregistrement", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error) == DialogResult.Retry)
this.SaveDialogOk(sender, e);
}
}
}
public string GetName()
{
return this.FileName;
}
}
public struct BodyMessage
{
public string Body;
public System.Web.Mail.MailFormat BodyFormat;
};
}
Conclusion
Euh... Je crois qu'il y a un petit bug au niveau du corps du message. Je m'en occupe rapidement et je mets ceci a jour.
Historique
- 20 juin 2005 13:35:41 :
- J'avais oublié de cocher la case .NET
- 21 juin 2005 14:36:05 :
- Comme cela me fut demander, voici un zip du code source.
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
recuperer des email par des socket pop [ par samiarima ]
bonjour je suis debutant en ce qui concerne csharp dotnet et mon problème est que je dois programmer des socket pop pour recuperer messages&
Envoi d'un mail avec pièce jointe [ par Flashy Warrior ]
Bonjour, j'utilise System.Web.Mail pour envoyer des mails avec pièce jointe. Seul petit problème : quand la pièce jointe pèse plus de 125 ko (approxi
pb de base de données avec le caractère @ [ par siadlamri ]
bonjour tout le monde, en fait j'ai un problème dans mon application C# qui essai d'inserer une ligne à une table d'une base de donn&
bug suppression mail pop [ par littlebigfox ]
Bonjour a tous! J'ai un enorme souci concernant un checker de mail que je me suis fait sur les differents modeles presents sur code source: je r
[c#] comment et ou utiliser les pop menu et info bulle [ par moha_yougo ]
comment et ou utiliser les pop menu et info bulle donner moi un examplemerci
recuperation email compte outlook [ par citt ]
Bonjour,Je voudrait pouvoir recuperer l'adresse email du compte par defaut d'outlook.Est-ce possible ?Citt_jrBats toi avec les meilleurs, crève a
Accéder à un serveur POP en .net 1.1 ? [ par Le_proprio_de_mykeyes ]
J'ai cherché pour trouver de l'information sur la possibilité d'accéder à un serveur POP, mais tout ce que j'ai trouvé c'est une DLL payante faisant t
info pour réponse d'un email automatique [ par mattiussi ]
bonjours en faite j'aimerai que dans mon aplic j'ai une forme ou ont doit remplire (nom,adresse,email,etc..) j'aimerai que quand il pousse sur la touc
|
Derniers Blogs
[TECHDAYS2012] OUI J'Y SERAI![TECHDAYS2012] OUI J'Y SERAI! par JeremyJeanson
Bonsoir, Certes, je l'annonce avec un peu de retard, mais je serai effectivement au Techdays demain. Comme l'an dernier, je participerai au programme ATE (Ask The Expert). Si vous avez des questions Workflow, WCF, AppFabric ou plus généralement .net, n'hé...
Cliquez pour lire la suite de l'article par JeremyJeanson TFS INTEGRATION TOOLS - SUIVI DES SYNCHRONISATIONS AVEC REPORTING SERVICESTFS INTEGRATION TOOLS - SUIVI DES SYNCHRONISATIONS AVEC REPORTING SERVICES par vfabing
Afin de s'assurer du bon fonctionnement des différentes synchronisations effectuées par les TFS Integration Tools, 2 rapports sont présents dès l'installation. Il suffit alors d'effectuer les manipulations suivantes pour pouvoir les visualiser : Loca...
Cliquez pour lire la suite de l'article par vfabing CSS CONTENT STATE SELECTORS (PERSONNAL DRAFT)CSS CONTENT STATE SELECTORS (PERSONNAL DRAFT) par FREMYCOMPANY
Bonjour à tous, Je viens de publier une proposition comprenant 5 pseudo-classes pour le CSS Working Group ayant trait à l'état de chargement d'un élément (ex: IMG,VIDEO,AUDIO,OBJECT pour l'HTML.). Si le c½ur vous en dit, vous pouvez retrouver cette p...
Cliquez pour lire la suite de l'article par FREMYCOMPANY MBA : POURQUOI FAIRE ET COMMENT LE CHOISIR ?MBA : POURQUOI FAIRE ET COMMENT LE CHOISIR ? par ROMELARD Fabrice
Formation initiale Durant la formation, le découpage classique est le suivant (je donnerai les équivalences Suisse lorsque je les connaîtrais) : Ecole primaire jusqu'au Collège : Formation générale permettant d'obtenir les méthodes...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice Y'A DES ERREURS QUI PEUVENT RENDRE LE DéVELOPPEUR VIOLENTY'A DES ERREURS QUI PEUVENT RENDRE LE DéVELOPPEUR VIOLENT par Aleks
Quand on a ce genre d'erreur sans log :
Et bas on a juste envie de choper le gas de Microsoft qu'a développé ça et lui foutre des baffes de Coboye ! ...
Cliquez pour lire la suite de l'article par Aleks
Logiciels
Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning COLLECTOR PLUS (3.00B)COLLECTOR PLUS (3.00B)COLLECTOR PLUS version 3.00B est un logiciel utilisant une base de données alimentée par :
- L... Cliquez pour télécharger COLLECTOR PLUS PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO LettresFaciles 2011 (8.0.0.1)LETTRESFACILES 2011 (8.0.0.1)LettresFaciles est un logiciel facilitant la création et la rédaction de lettres types.
Son inte... Cliquez pour télécharger LettresFaciles 2011
|