Download

C# Sample programs and utilities.

A collection of some of the utilities and sample programs written in C#, while learning the intricacies of the language.

Downloads

Here you will find some of the code snippets, tools and sample programs that I have written. I am still learning to write the perfect code and on my journey to the discovery of the ultimate TAO of programming.
  • wxWidgets: Lots of wxWidgets (C++ cross-platform library) related ready to use classes, samples and tools.

Turbo C++ sample programs

ImageLib

ImageLib

Download wxWidgets classes, samples and tools.

wxDownloadFile

Class for downloading a file from a given URL and send back event notification to the owner, when the download fails or complete. If you are planning to write the world best download manager using wxDownloadFile, then I would have written it long back, if its possible. wxDownloadFile can be used to download small files, without much hassle, like downloading the latest version information, any message, etc.

BEGIN_EVENT_TABLE(CMyFrame, wxFrame)
  EVT_DOWNLOAD(CMyFrame::OnDownloadEvent)
END_EVENT_TABLE()