la bonne utilisation des hashtags :
http://www.blueboat.fr/infographie-hashtags
Quand publier sur les médias sociaux :
http://www.noupe.com/business-online/recipe-success-post-social-media-infographic.html
mercredi 16 novembre 2016
mardi 15 novembre 2016
EDIVisualizer v2.0.5
Nouvelle version de EDIVisualizer avec quelques corrections :
Un SDK est également disponible https://edivisualizersdk.codeplex.com pour permettre la création de plugin complémentaire.- Nouveau plugin Odette/Galia avec prise en charge des formats DELINSV3, INVOICV3 et AVIEXPV3
- Corrections de bugs et optimisation.
Libellés :
EDI,
EDIVisualizer,
Productivité,
Utilitaires
mardi 26 juillet 2016
EDIVisualizer v2.0.3
Nouvelle version de EDIVisualizer avec quelques corrections :
- Meilleure visualisation des fichiers EDIDACT
- Corrections de bugs et optimisation.
Un SDK est également disponible https://edivisualizersdk.codeplex.com pour permettre la création de plugin complémentaire.
Libellés :
EDI,
EDIVisualizer,
Productivité,
Utilitaires
jeudi 21 mai 2015
mercredi 6 novembre 2013
Créer un fichier AS400 avec C#
Inspiré de l'article http://www.experts-exchange.com/OS/AS_-_400/Q_24367101.html, voici comment créer, via C#, des fichiers sous AS400 (IBM iSeries). Ou, plus exactement, comment exécuter et paramétrer la commande CRTPF de création de fichiers.
- Référencer la dll cwbx.dll (cette dll est installée avec le programme IBM Client Access)
- Ecrire le code suivant :
AS400System as400 = new AS400System();
Command cmd = new Command();
try
{
as400.Define("IP serveur AS400");
as400.UserID = "Utilisateur";
as400.Password = "Mot de passe";
as400.PromptMode = cwbcoPromptModeEnum.cwbcoPromptNever;
as400.Signon();
cmd.system = as400;
string command = string.Format("CRTPF FILE({0}/{1}) RCDLEN({2}) TEXT('{3}')", "Bibliothèque AS400", "Fichier à créer", "Taille du fichier", "Commentaires");
cmd.Run(command);
MessageBox.Show("Fichier créé", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
as400.Disconnect(cwbcoServiceEnum.cwbcoServiceAll);
}
Voilà, c'est tout!
Inscription à :
Articles (Atom)