Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.474.361 Times

Reware Cheque Writer freeware
Filter: All | Freeware | Demo
 

Reware Cheque Writer

< 1 2 3 4 5 > 
Released: September 13, 2011  |  Added: November 22, 2011 | Visits: 2.036

Kingsoft Writer Free 2012 As part of the Kingsoft Office Suite 2012, Kingsoft Writer 2012 is a powerful and user-friendly word processing program. It is fully compatible with all Microsoft Word, and it can process Microsoft Word files and save documents as various file formats including .doc, .docx, .txt, etc. formats...



Platforms: Windows

License: Freeware Size: 43.24 MB Download (112): Kingsoft Writer Free 2012 Download

Added: April 04, 2010 | Visits: 1.040

OPML Writer OPML Writer is a PHP4 class for writing OPML files with an object-oriented approach..





Platforms: *nix

License: Freeware Size: 163.84 KB Download (110): OPML Writer Download

Added: May 11, 2010 | Visits: 1.135

Doc::Perlish::Writer Doc::Perlish::Writer is a base class for stream output functions. SYNOPSIS # using - generally use a subclass my $writer = Doc::Perlish::Writer::XML->new(); $doc->receiver($writer); $doc->send_all(); my $output = $writer->output; # an IO::All object # or, you can pass an object or...


Platforms: *nix

License: Freeware Size: 56.32 KB Download (110): Doc::Perlish::Writer Download

Added: April 01, 2010 | Visits: 934

FCFS RWLock FCFS RWLock is a Readers/Writers Lock (or RWLock for short) is a mechanism that allows an arbitrary number of readers or alternatively one writer to access a resource at any given time. FCFS RWLock project is useful in case writing may temporarily harm the integrity of the resource. Many...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (109): FCFS RWLock Download

Added: July 07, 2010 | Visits: 722

XML::Genx XML::Genx is a simple, correct XML writer. SYNOPSIS use XML::Genx; my $w = XML::Genx->new; eval { # < foo >bar< /foo > $w->StartDocFile( *STDOUT ); $w->StartElementLiteral( foo ); $w->AddText( bar ); $w->EndElement; $w->EndDocument; }; die "Writing XML failed: $@" if $@; This...


Platforms: *nix

License: Freeware Size: 37.89 KB Download (107): XML::Genx Download

Added: October 15, 2010 | Visits: 894

XML::SAX::Writer XML::SAX::Writer is a Perl module with SAX2 Writer. SYNOPSIS use XML::SAX::Writer; use XML::SAX::SomeDriver; my $w = XML::SAX::Writer->new; my $d = XML::SAX::SomeDriver->new(Handler => $w); $d->parse(some options...); Why yet another XML Writer ? A new XML Writer was needed to match...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (105): XML::SAX::Writer Download

Added: January 25, 2010 | Visits: 628

WritersDB Pending Subs Widget WritersDB Pending Subs Widget connects to an individual's account on the Writer's Database site (www.writersdb.com) and displays their Pending Submissions--i.e., those manuscripts sent out to magazines or other markets that have not yet received replies.(The Writer's Database is a free site that...


Platforms: Mac

License: Freeware Download (102): WritersDB Pending Subs Widget Download

Added: June 26, 2010 | Visits: 973

webCDwriter webCDwriter can be used to make the CD- and DVD-writer(s) connected to a Linux box available to all users in your network. It consists of the server CDWserver and the clients webCDcreator and rcdrecord. CDWserver stores the files transmitted by the clients, reserves the CD-writer and controls...


Platforms: *nix

License: Freeware Size: 583.68 KB Download (98): webCDwriter Download

Added: January 18, 2010 | Visits: 1.598

XML::Writer::Simple XML::Writer::Simple is a Perl module to create XML files easily! SYNOPSIS use XML::Writer::Simple dtd => "file.dtd"; print para("foo",b("bar"),"zbr"); USAGE This module takes some ideas from CGI to make easier the life for those who need to generated XML code. You can use the module in...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (97): XML::Writer::Simple Download

Added: August 09, 2008 | Visits: 1.036

Real PDF Writer DS Clock is a digital desktop clock that displays variable date and time information built from the format string. The program allows you to fully customize its look and feel, and can synchronize your computer's clock with Atomic Time Servers. You can select any combination of date and time, pick...


Platforms: Windows

License: Freeware Size: 1.3 MB Download (97): Real PDF Writer Download

Added: August 30, 2008 | Visits: 807

BlogMyCode BlogMyCode is Microsoft Visual Studio 2005 plugin, that helps you to blog formatted source code, by using Windows Live Writer. Just select source code from Visual Studio 2005, open context menu by clicking right mouse button and choose "Blog This".


Platforms: Windows

License: Freeware Size: 1.15 MB Download (96): BlogMyCode Download

Added: February 17, 2010 | Visits: 1.137

Graph::Writer::DrGeo Graph::Writer::DrGeo can save the graph output DrGeo scheme script. SYNOPSIS my $g = new Graph; # Add some vertices/edges to $g my $writer = Graph::Writer::DrGeo->new(); $writer->write_graph($g,"graph.scm"); # graph.scm can be evaluated and rendered with Dr.Geo Dr. Geo is a GTK...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (95): Graph::Writer::DrGeo Download

Added: January 27, 2010 | Visits: 1.046

XML::Writer XML::Writer is a Perl extension for writing XML documents. SYNOPSIS use XML::Writer; use IO::File; my $output = new IO::File(">output.xml"); my $writer = new XML::Writer(OUTPUT => $output); $writer->startTag("greeting", "class" => "simple"); $writer->characters("Hello, world!");...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (91): XML::Writer Download

Added: March 24, 2010 | Visits: 2.221

ConfigFile for Haskell ConfigFile for Haskell is a configuration file parser and writer library for Haskell. The ConfigFile module works with configuration files in a standard format that is easy for the user to edit, easy for the programmer to work with, yet remains powerful and flexible. It is inspired by, and...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (91): ConfigFile for Haskell Download

Added: June 21, 2010 | Visits: 858

CGI::Ex::Conf CGI::Ex::Conf is a Perl module with Conf Reader/Writer for many different data format types. SYNOPSIS use CGI::Ex::Conf qw(conf_read conf_write); my $hash = conf_read("/tmp/foo.yaml"); conf_write("/tmp/foo.yaml", {key1 => $val1, key2 => $val2}); ### OOP interface my $cob =...


Platforms: *nix

License: Freeware Size: 215.04 KB Download (89): CGI::Ex::Conf Download

Released: July 04, 2014  |  Added: July 16, 2014 | Visits: 1.918

NBL Business Suite Business Suite is a Windows database-driven software package designed for soho, small and medium size company, to manage and monitor purchasing process, sales, billing, stocks, expenses and contacts It consisted of several modules, which can work independently. You may just select those you...


Platforms: Windows, Windows Server

License: Freeware Size: 89.9 MB Download (82): NBL Business Suite Download

Released: August 15, 2014  |  Added: August 19, 2014 | Visits: 908

NBL Finance Tool NBL Finance Tool is a Windows database-driven software designed for personal, soho, small and medium size company, to manage and monitor personal or organization money, expenses and cheque transaction (include cheque printer). Include feature: Master Editor: Store Bank, Employee, Organization...


Platforms: Windows

License: Freeware Size: 68.79 MB Download (77): NBL Finance Tool Download

Released: July 05, 2012  |  Added: July 05, 2012 | Visits: 1.396

MP4 Encoder DirectShow Filter Create MPEG4 video and MPEG4 audio files using DirectShow filter, which includes MPEG-4 video ASP encoder, MPEG-4 audio FAAC (Freeware Advanced Audio Codec) and ISO compliant MP4 file writer. Video-audio files can be played with QuickTime, Real and FFDShow based players. Save file as .divx if you...


Platforms: Windows

License: Freeware Size: 402 KB Download (76): MP4 Encoder DirectShow Filter Download

Released: July 09, 2015  |  Added: July 21, 2015 | Visits: 592

BulkPDF What is BulkPDF? BulkPDF is a free and easy to use freeware software (Open Source), which allows to automatically fill an existing PDF form with different values. Only a spreadsheet (Microsoft Excel 2007/2010/2013, LibreOffice or OpenOffice Calc) with the desired values is required. How does...


Platforms: Windows, Mac, *nix, Windows 7

License: Freeware Size: 4.88 MB Download (76): BulkPDF Download

Released: June 15, 2012  |  Added: June 15, 2012 | Visits: 807

TruePDF TruePDF is the first truly free PDF printer, creator, and writer that quickly create PDF files from virtually any application on Microsoft Windows 7, Vista, 2008, 2003, and XP without the need for GhostScript or Adobe Acrobat. The software features a smart installer can set up both x86 and x64...


Platforms: Windows

License: Freeware Size: 1.7 MB Download (72): TruePDF Download

< 1 2 3 4 5 >