Skip to main content

Posts

Showing posts from 2012

Sticky Notes type application using C#

Technology: C#.NET Major components of .NET used in this app:  Windows Form Text Box control Serialization concept What is "sticky notes"? Ans: Sticky note is a simple note keeping application of Windows. It remains on the top of the every window. We can use it to write down small notes that requires frequent attention. Concept of serialization: To save the current state of sticky note we can use Serialization concept. Serialization is the process of converting an object into a stream of bytes in order to store the object or transmit it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization. Steps to create this utility: Create a Windows Form based project in IDE. Add TextBox control on the Windows form Set following properties of the TextBox control: Dock Style to Fill Multiline to True Code Snippnets: //stor