To the main page
1. FileKing
The program is a file manager. It isn't tested yet so some defects are
possible while it's working.
The TListViewFiles visual component created by the author is used in
the program. It's a descendant of TListView component and shows the list
of files in a directory. The sources for TListViewFiles component you
can download here.
The main window of the program:
2. Small Post
It's a simple mail program to work with e-mail messages. The program is
still under construction so some functions are not realized yet.
The TStringGrid component is used to display main features of messages.
The TNMPOP3 and TNMSMTP components are used to receive and send
messages. The text of a message is displayed with the TCppWebBrowser
component. When you select the "Get new letters" menu item you must have
connected to Internet already.
The main window of the program:
3. ScanScreen
The program makes a stamp of the screen (or any of its part) and saves
it in the *.bmp file. The user must fill up
fields of the program's main window: X and Y coordinates of the
upper-left corner, the width and the height of the area to save. The
width and the height are measured in pixels. The width and the height of
the user's screen are shown on the main window of the program.
Note how we get the display device context (DC) using GetDC(NULL) function. The function
has to receive the window's handle as a parameter. But using NULL
instead of a handle means the reference to the Windows shell (usually
it's Explorer).