Jing, un outil différent


Un ami m'a récament parlé de Jing. Il a dit que c'était un bon outil de capture d'écran ou écran vidéo rapide. "Quoi de neuf", ai-je dis. "Essaie le" m'a t-il répondu, tu verras bien. Et je vis me plus!

Jing ressemble à un soleil accroché sur le côté de votre écran. Vous pouvez facilement y avoir accès seulement en bougeant la souris au-dessus.

Pour faire une capture, rien de plus simple. Vous sélectionner quel partie de votre écran vous voul seulement Vous pouvez faire de la capture d'écran et ajouter du texte ou des flèches sur elle.

Une fois que vous êtes la capture est fini, vous pouvez l'enregistrer sur un lecteur local ou en ligne! Vous pouvez créer un compte gratuit pour tous afin screencast.com vous êtes capture sera disponible pour tous les peuples.

So like me if you want to try it, it a free software and it’s well done. Alors si comme moi vous voulez essayer, c'est un logiciel libre et c'est bien fait.


www.jingproject.com/

Video tour: ici


Jing the Wonderful

  image

A friend recently talk me about Jing.  He said that it was a good tool to take screen shot or do quick screen video.  "And what's new?" I said.  "Try it", he reply, "you will see".   

And I saw.

Jing look like a docked sun on the side of you're screen.  You can easily access to it by moving you're mouse over it.  You can  do some screen capture just by one click.  

Before saving it give you the opportunity to add coloured arrow, text and to high-lite some zone of you're capture.

Once you're capture is finish you can save it on a local drive or online!  You can create a free account to screencast.com so all you're capture will be available for all the people.

So like me if you want to try it, it a free software and it's well done.

www.jingproject.com/

Video Tour: Here

DiagramLib

Description

DiagramLib is a library that give the opportunity to draw some schema like Visio.  I did this librairy doing a addon to Microsoft Visual Studio.  The goal was simple use the drag&drop to quickly build a schema.

 

Features

  • You can draw many different shapes like: oval, rectangle, rounded rectangle, diamond and the special class shape.
  • Each shape is completely manageable by the UI.  You just need to right-click on a shape to get the Property windows, exactly like Microsoft Visual Studio.
  • You can draw connection between shapes.  Those connections will automatically be re-draw to optimize the path as you moving a shape.  Also the connections have the same customization feature as all shape.
  • The board will automatically expend if needed.
  • You can save and load the schema.

Code

To be able to use the library you just need to add a reference to it. 

   1: private GraphControl oBoard;


   2:  


   3: this.oBoard = new Compuware.DiagramLib.GraphControl();


   4:  


   5: this.oBoard.Dock = System.Windows.Forms.DockStyle.Fill;


   6: this.oBoard.Location = new System.Drawing.Point(0, 0);


   7: this.oBoard.Name = "oBoard";


   8: this.oBoard.ShowLoadSaveOption = true;


   9: this.oBoard.Size = new System.Drawing.Size(605, 372);


  10: this.oBoard.Tracking = false;




Download



I did a quick test application to play with the class that you can download here: http://boucheros.no-ip.org/TestDiagramLib/



If you prefer doing a Test application by you're self here is the DLL: Boucheros.DiagramLib.rar



 



ScreenShot



image



For any Question or comment feel free to live a comment.