Accueil > > > TRANSFER DES FICHIER + L'UTILISATION DES THREAD
TRANSFER DES FICHIER + L'UTILISATION DES THREAD
Information sur la source
Description
Ce code permet de transferer les fichier en local en convertissant les fichier en Bytes avec un thread apart.....
Source
- using System;
- using System.Drawing;
- using System.Collections;
- using System.ComponentModel;
- using System.Windows.Forms;
- using System.Data;
- using System.IO;
- using System.Xml;
- using System.Threading;
-
- namespace BctDepository
- {
- /// <summary>
- /// Summary description for Form1.
- /// </summary>
- public class Form1 : System.Windows.Forms.Form
- {
- //private int currentOrthoDirName,currentPatientDirName,currentExamenDirName;
- string pathFrom,pathTo;
- private Thread thread = null;
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.Button browseSource;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.Button browseDestination;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.OpenFileDialog openFile;
- private System.Windows.Forms.TextBox textSource;
- private System.Windows.Forms.TextBox txt;
- private System.Windows.Forms.TextBox textDestination;
- private System.Windows.Forms.Button exit;
- private System.Windows.Forms.SaveFileDialog saveFile;
- private System.Windows.Forms.Label fileSizeFromLabel;
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.Container components = null;
-
- public Form1()
- {
- //
- // Required for Windows Form Designer support
- //
- InitializeComponent();
-
- //
- // TODO: Add any constructor code after InitializeComponent call
- //
- }
-
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- protected override void Dispose( bool disposing )
- {
- if( disposing )
- {
- if (components != null)
- {
- components.Dispose();
- }
- }
- base.Dispose( disposing );
- }
-
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.textSource = new System.Windows.Forms.TextBox();
- this.browseSource = new System.Windows.Forms.Button();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.textDestination = new System.Windows.Forms.TextBox();
- this.browseDestination = new System.Windows.Forms.Button();
- this.button1 = new System.Windows.Forms.Button();
- this.openFile = new System.Windows.Forms.OpenFileDialog();
- this.txt = new System.Windows.Forms.TextBox();
- this.exit = new System.Windows.Forms.Button();
- this.saveFile = new System.Windows.Forms.SaveFileDialog();
- this.fileSizeFromLabel = new System.Windows.Forms.Label();
- this.groupBox1.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.SuspendLayout();
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.textSource);
- this.groupBox1.Controls.Add(this.browseSource);
- this.groupBox1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
- this.groupBox1.Location = new System.Drawing.Point(8, 8);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(552, 48);
- this.groupBox1.TabIndex = 0;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "Source Path";
- //
- // textSource
- //
- this.textSource.Location = new System.Drawing.Point(8, 16);
- this.textSource.Name = "textSource";
- this.textSource.Size = new System.Drawing.Size(448, 20);
- this.textSource.TabIndex = 1;
- this.textSource.Text = "";
- //
- // browseSource
- //
- this.browseSource.Location = new System.Drawing.Point(464, 15);
- this.browseSource.Name = "browseSource";
- this.browseSource.TabIndex = 0;
- this.browseSource.Text = "Browse";
- this.browseSource.Click += new System.EventHandler(this.browseSource_Click);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.textDestination);
- this.groupBox2.Controls.Add(this.browseDestination);
- this.groupBox2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
- this.groupBox2.Location = new System.Drawing.Point(8, 64);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(552, 48);
- this.groupBox2.TabIndex = 3;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "Destination Path";
- //
- // textDestination
- //
- this.textDestination.Location = new System.Drawing.Point(8, 16);
- this.textDestination.Name = "textDestination";
- this.textDestination.Size = new System.Drawing.Size(448, 20);
- this.textDestination.TabIndex = 6;
- this.textDestination.Text = "";
- //
- // browseDestination
- //
- this.browseDestination.Location = new System.Drawing.Point(464, 15);
- this.browseDestination.Name = "browseDestination";
- this.browseDestination.TabIndex = 0;
- this.browseDestination.Text = "Browse";
- this.browseDestination.Click += new System.EventHandler(this.browseDestination_Click);
- //
- // button1
- //
- this.button1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
- this.button1.Location = new System.Drawing.Point(384, 120);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(96, 23);
- this.button1.TabIndex = 2;
- this.button1.Text = "Transfer";
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // openFile
- //
- this.openFile.Filter = "All Files (*.*) | *.*";
- //
- // txt
- //
- this.txt.Location = new System.Drawing.Point(0, 0);
- this.txt.Name = "txt";
- this.txt.TabIndex = 0;
- this.txt.Text = "";
- //
- // exit
- //
- this.exit.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
- this.exit.Location = new System.Drawing.Point(484, 120);
- this.exit.Name = "exit";
- this.exit.TabIndex = 8;
- this.exit.Text = "Exit";
- this.exit.Click += new System.EventHandler(this.exit_Click);
- //
- // saveFile
- //
- this.saveFile.Filter = "All Files (*.*) | *.*";
- //
- // fileSizeFromLabel
- //
- this.fileSizeFromLabel.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
- this.fileSizeFromLabel.Location = new System.Drawing.Point(8, 120);
- this.fileSizeFromLabel.Name = "fileSizeFromLabel";
- this.fileSizeFromLabel.Size = new System.Drawing.Size(360, 16);
- this.fileSizeFromLabel.TabIndex = 9;
- this.fileSizeFromLabel.Text = "File Size ( 0.0 Ko)";
- //
- // Form1
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
- this.ClientSize = new System.Drawing.Size(570, 152);
- this.Controls.Add(this.fileSizeFromLabel);
- this.Controls.Add(this.exit);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.button1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.Name = "Form1";
- this.Text = "Transfer Files By Converting It\'s to Bytes";
- this.groupBox1.ResumeLayout(false);
- this.groupBox2.ResumeLayout(false);
- this.ResumeLayout(false);
-
- }
- #endregion
-
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.Run(new Form1());
- }
-
- private void browseSource_Click(object sender, System.EventArgs e) {
- if (openFile.ShowDialog()==DialogResult.OK){
- textSource.Text=openFile.FileName;
- }
- FileStream sizeFile = new FileStream(textSource.Text,FileMode.Open,FileAccess.Read);
- fileSizeFromLabel.Text="File Size ( "+(sizeFile.Length/1024) +" Ko)";
- sizeFile.Close();
-
-
- }
-
- private void button1_Click(object sender, System.EventArgs e) {
-
- try{
- pathFrom = textSource.Text ;
- pathTo = textDestination.Text;
- ThreadStart threadStart = new ThreadStart(lunchThread);
- thread = new Thread(threadStart);
- thread.Start();
- }catch(Exception ex)
- {
- MessageBox.Show(ex.ToString());
- }
- }
- private void lunchThread()
- {
- transferFile(pathFrom,pathTo);
- }
-
- private void transferFile(string pathFrom,string pathTo)
- {
- try{
- FileStream streamRead = new FileStream(pathFrom,FileMode.Open,FileAccess.Read);
- FileStream streamWriter = new FileStream(pathTo,FileMode.CreateNew,FileAccess.ReadWrite);
- int len = (int)streamRead.Length;
- Byte[] byteFile = new Byte[len];
- streamRead.Read(byteFile,0,len);
- streamWriter.Write(byteFile,0,byteFile.Length);
-
- streamRead.Close();
- streamWriter.Close();
- MessageBox.Show("Transfered success","Crack_xp Demo",MessageBoxButtons.OK,MessageBoxIcon.Asterisk);
- }catch (Exception ex){
- MessageBox.Show(ex.ToString(),"Exception in Transfer File",MessageBoxButtons.OK,MessageBoxIcon.Warning);
- MessageBox.Show("Transfered Filed!!","Crack_xp Demo",MessageBoxButtons.OK,MessageBoxIcon.Error);
- }
-
- }
-
- private void exit_Click(object sender, System.EventArgs e) {
- Application.Exit();
- }
-
- private void browseDestination_Click(object sender, System.EventArgs e) {
- try{
- saveFile.FileName=textSource.Text.Remove(0,textSource.Text.LastIndexOf("\\"));
- if (saveFile.ShowDialog()==DialogResult.OK){
- textDestination.Text=saveFile.FileName;
- }
- }catch(Exception ex)
- {
- MessageBox.Show(ex.ToString(),"Exception in Transfer File",MessageBoxButtons.OK,MessageBoxIcon.Warning);
- }
- }
-
- }
- }
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO;
using System.Xml;
using System.Threading;
namespace BctDepository
{
/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
//private int currentOrthoDirName,currentPatientDirName,currentExamenDirName;
string pathFrom,pathTo;
private Thread thread = null;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button browseSource;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button browseDestination;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.OpenFileDialog openFile;
private System.Windows.Forms.TextBox textSource;
private System.Windows.Forms.TextBox txt;
private System.Windows.Forms.TextBox textDestination;
private System.Windows.Forms.Button exit;
private System.Windows.Forms.SaveFileDialog saveFile;
private System.Windows.Forms.Label fileSizeFromLabel;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textSource = new System.Windows.Forms.TextBox();
this.browseSource = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.textDestination = new System.Windows.Forms.TextBox();
this.browseDestination = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.openFile = new System.Windows.Forms.OpenFileDialog();
this.txt = new System.Windows.Forms.TextBox();
this.exit = new System.Windows.Forms.Button();
this.saveFile = new System.Windows.Forms.SaveFileDialog();
this.fileSizeFromLabel = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.textSource);
this.groupBox1.Controls.Add(this.browseSource);
this.groupBox1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.groupBox1.Location = new System.Drawing.Point(8, 8);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(552, 48);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Source Path";
//
// textSource
//
this.textSource.Location = new System.Drawing.Point(8, 16);
this.textSource.Name = "textSource";
this.textSource.Size = new System.Drawing.Size(448, 20);
this.textSource.TabIndex = 1;
this.textSource.Text = "";
//
// browseSource
//
this.browseSource.Location = new System.Drawing.Point(464, 15);
this.browseSource.Name = "browseSource";
this.browseSource.TabIndex = 0;
this.browseSource.Text = "Browse";
this.browseSource.Click += new System.EventHandler(this.browseSource_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.textDestination);
this.groupBox2.Controls.Add(this.browseDestination);
this.groupBox2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.groupBox2.Location = new System.Drawing.Point(8, 64);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(552, 48);
this.groupBox2.TabIndex = 3;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Destination Path";
//
// textDestination
//
this.textDestination.Location = new System.Drawing.Point(8, 16);
this.textDestination.Name = "textDestination";
this.textDestination.Size = new System.Drawing.Size(448, 20);
this.textDestination.TabIndex = 6;
this.textDestination.Text = "";
//
// browseDestination
//
this.browseDestination.Location = new System.Drawing.Point(464, 15);
this.browseDestination.Name = "browseDestination";
this.browseDestination.TabIndex = 0;
this.browseDestination.Text = "Browse";
this.browseDestination.Click += new System.EventHandler(this.browseDestination_Click);
//
// button1
//
this.button1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.button1.Location = new System.Drawing.Point(384, 120);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(96, 23);
this.button1.TabIndex = 2;
this.button1.Text = "Transfer";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// openFile
//
this.openFile.Filter = "All Files (*.*) | *.*";
//
// txt
//
this.txt.Location = new System.Drawing.Point(0, 0);
this.txt.Name = "txt";
this.txt.TabIndex = 0;
this.txt.Text = "";
//
// exit
//
this.exit.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.exit.Location = new System.Drawing.Point(484, 120);
this.exit.Name = "exit";
this.exit.TabIndex = 8;
this.exit.Text = "Exit";
this.exit.Click += new System.EventHandler(this.exit_Click);
//
// saveFile
//
this.saveFile.Filter = "All Files (*.*) | *.*";
//
// fileSizeFromLabel
//
this.fileSizeFromLabel.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.fileSizeFromLabel.Location = new System.Drawing.Point(8, 120);
this.fileSizeFromLabel.Name = "fileSizeFromLabel";
this.fileSizeFromLabel.Size = new System.Drawing.Size(360, 16);
this.fileSizeFromLabel.TabIndex = 9;
this.fileSizeFromLabel.Text = "File Size ( 0.0 Ko)";
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(570, 152);
this.Controls.Add(this.fileSizeFromLabel);
this.Controls.Add(this.exit);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "Form1";
this.Text = "Transfer Files By Converting It\'s to Bytes";
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void browseSource_Click(object sender, System.EventArgs e) {
if (openFile.ShowDialog()==DialogResult.OK){
textSource.Text=openFile.FileName;
}
FileStream sizeFile = new FileStream(textSource.Text,FileMode.Open,FileAccess.Read);
fileSizeFromLabel.Text="File Size ( "+(sizeFile.Length/1024) +" Ko)";
sizeFile.Close();
}
private void button1_Click(object sender, System.EventArgs e) {
try{
pathFrom = textSource.Text ;
pathTo = textDestination.Text;
ThreadStart threadStart = new ThreadStart(lunchThread);
thread = new Thread(threadStart);
thread.Start();
}catch(Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
private void lunchThread()
{
transferFile(pathFrom,pathTo);
}
private void transferFile(string pathFrom,string pathTo)
{
try{
FileStream streamRead = new FileStream(pathFrom,FileMode.Open,FileAccess.Read);
FileStream streamWriter = new FileStream(pathTo,FileMode.CreateNew,FileAccess.ReadWrite);
int len = (int)streamRead.Length;
Byte[] byteFile = new Byte[len];
streamRead.Read(byteFile,0,len);
streamWriter.Write(byteFile,0,byteFile.Length);
streamRead.Close();
streamWriter.Close();
MessageBox.Show("Transfered success","Crack_xp Demo",MessageBoxButtons.OK,MessageBoxIcon.Asterisk);
}catch (Exception ex){
MessageBox.Show(ex.ToString(),"Exception in Transfer File",MessageBoxButtons.OK,MessageBoxIcon.Warning);
MessageBox.Show("Transfered Filed!!","Crack_xp Demo",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
private void exit_Click(object sender, System.EventArgs e) {
Application.Exit();
}
private void browseDestination_Click(object sender, System.EventArgs e) {
try{
saveFile.FileName=textSource.Text.Remove(0,textSource.Text.LastIndexOf("\\"));
if (saveFile.ShowDialog()==DialogResult.OK){
textDestination.Text=saveFile.FileName;
}
}catch(Exception ex)
{
MessageBox.Show(ex.ToString(),"Exception in Transfer File",MessageBoxButtons.OK,MessageBoxIcon.Warning);
}
}
}
}
Conclusion
t'es content mainteant SimonKari ??!!!!!
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
Copy de Fichier [ par creanova2000 ]
Bonjour je desire copier un fichier a l'aide de la fonction File.CopyLe probleme est que je veux voire la progression de la copie avec un
C# et les thread ??? [ par adriencollas ]
Bonjour a tous,j'ai réalisé un petit programme qui decode un signale DTMF a partir d'un fichier audio.le temp de calcul est assé long c
Transfert de fichier + Signature [ par pepe013 ]
Bonjour, Comment faire pour réaliser un transfert de fichier vers un poste distant qui possede un compte différent ? Sachant que je ne peux pas créer
Transfert fichier par usb [ par Diafwl1 ]
Bonjour, j'aimerai pouvoir lire et ecrire sur un fichier xml situé sur un PDA par l'intermediaire du port USB, à l'aide d'un programme en C# placé sur
Transfert de fichier [ par spawn644 ]
Bonjour, je dois réaliser une application poutr transférer des fichiers via tcp/ip. J'ai réussi a fauire du transfert de chain de carac
Connaître la fin de lecture d'un fichier son [ par benzebuth666 ]
Salut tout le monde,J'ai un problème avec la classe SoundPlayer Je voudrais lire un fichier wav et ensuite continuer le déroulement du programme. Mais
Transfert d'une base sql vers un fichier exel. [ par Jofouin ]
Bonjour à tous !Je réalise un petit logiciel de gestion. Et j'aimerais associer à un événement (quitter l'application) une fonction qui transfert le r
C# - Transfert fichier depuis mobile vers PC par Wifi/LAN (sans Internet) [ par jpng ]
Bonjour à tous, Je suis sur un pb depuis qqs temps : je dois faire un transfert de fichier entre un programme en c# (avec Visual Studio) sur mobile e
transfert d'une collection dans un fichier [ par Jojo092 ]
Bonjour à tous,dans le cadre d'un PTI je dois développer un programme pour la gestion d'une bibliothèque. J'ai donc créer une coll
|
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
|