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
TECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOURTECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOUR par ROMELARD Fabrice
Cette session est la dernière pleinière de ces 3 jours de TechDays Paris 2010. Généralement, cette troisième journée est plus axée sur l'avenir vu par Microsoft. Après un retour sur l'avenir vu par la Science Fiction ou par ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice UNE JOLIE-HORLOGE ET PAS QU'UN PEU !UNE JOLIE-HORLOGE ET PAS QU'UN PEU ! par neodante
Pour les possesseurs d'iPhone, ça y est Bijin Tokei - qui se traduit littéralement en Français par " Jolie Horloge " - est arrivé et GRATUITEMENT s'il vous plaît ! Après la version Tokyo, Hokkaido, night club, racing, Gal, "pour les mademoiselles'", . voi...
Cliquez pour lire la suite de l'article par neodante TECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICESTECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICES par ROMELARD Fabrice
Animé par: Gaetan Bouveret et Julien Chomarat Business Connectivity Services (BCS) est dans SharePoint 2010 la version 2 de Business Data Catalog (BDC dans SharePoint 2007). Il s'agit de la solution permettant de visualiser des données provenan...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice [DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE[DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE par orion
Comme de nombreux geek, je suis un grand amateur de série TV et je rate régulièrement des épisodes de mes séries préférés. Une solution s'offre à vous avec ce merveilleux site : Tv Gorge - www.tvgorge.com Moteur de recherche à l'appui, vous pouvez ...
Cliquez pour lire la suite de l'article par orion TECHDAYS PARIS 2010 : LA BI DANS SHAREPOINT 2010TECHDAYS PARIS 2010 : LA BI DANS SHAREPOINT 2010 par ROMELARD Fabrice
Animé par: Vincent Bellet et Baptiste Giraudier La BI dans SharePoint 2010, Les nouveaux services d'application dans SP2010 et SQL Server Reporting services 2008 R2. La BI dans SharePoint est généralisée pour tous afin de permettre à tous les coll...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Logiciels
DB-MAIN (9.1.0)DB-MAIN (9.1.0)DB-MAIN is a data-modeling and data-architecture tool. It is designed to help developers and anal... Cliquez pour télécharger DB-MAIN Xilisoft DPG Convertisseur (5.1.37.0120)XILISOFT DPG CONVERTISSEUR (5.1.37.0120)Xilisoft DPG Convertisseur offre aux fans de Nintendo DS une bonne solution leur permettant de dé... Cliquez pour télécharger Xilisoft DPG Convertisseur GraphicsGale (2.01.01)GRAPHICSGALE (2.01.01)GraphicsGale est un logiciel de PixelArt avec de nombreuse fonctionnalités permettant de réalisé ... Cliquez pour télécharger GraphicsGale Architecte 3D (Platinum 2010)ARCHITECTE 3D (PLATINUM 2010)Architecte 3D Platinium vous permet de concevoir facilement les plans votre future maison, de l'é... Cliquez pour télécharger Architecte 3D TeamViewer 5 (TeamViewer 5)TEAMVIEWER 5 (TEAMVIEWER 5)Dépanner un ami,expliquer une manipulation devient un jeu d'enfant.
Prise en main d'un autre ord... Cliquez pour télécharger TeamViewer 5
Comparez les prix

HTC Hero
Entre 550€ et 550€
|