Click here to Skip to main content
15,891,136 members
Articles / Programming Languages / C#
Article

Memo Pad

Rate me:
Please Sign up or sign in to vote.
1.60/5 (2 votes)
20 Aug 2005 21.7K   454   8   1
A little memo pad that reminds me of important tasks

Sample Image - memopad.jpg

Introduction

Recently, I have been very busy setting up a BCP site for my company. Since I have so many things that needs to be done at one time, I decided to quickly put together a little program that can reminds me of important tasks.

What do I need

  • A memo pad that I can always see it.
  • It should not block my sight when I want to work with other windows.
  • I can cross out finished tasks.
  • I can reorder tasks.

How it works

  • It will stay on top of other windows when it contains focus.
  • It will become transparent and shink when it loses focus.
  • When an item is checked, it will be crossed out and will not be saved.
  • It supports drag-and-drop item reordering.

Configuration

Simply modify the application configuration file, MemoPad.exe.config.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <appSettings>
    <add key="Shrink" value="true" />
    <add key="ActiveOpacity" value="100" />
    <add key="DeactiveOpacity" value="50" />
    <add key="MemoX" value="911" />
    <add key="MemoY" value="96" />
    <add key="MemoW" value="280" />
    <add key="MemoH" value="328" />
  </appSettings>
</configuration>

Finally...

This is the first time I post something here and I hope you find it usual too.

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Hong Kong Hong Kong
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralSuggested improvements Pin
fwsouthern20-Aug-05 14:32
fwsouthern20-Aug-05 14:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.