to help
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2550
Tk::Help 0.2
Tk::Help is simple widget for creating a help system for Perl/Tk applications. more>>
Tk::Help is simple widget for creating a help system for Perl/Tk applications.
SYNOPSIS
use Tk::Help;
my $help = $main->Help(-variable => @array);
This is an answer to a personal need to be able to create help systems for my Perl/Tk applications. Originally, I just created a really big dialog and formatted all the text, which was tedious and clumsy.
I wanted to create something that looked similar to the Windows help. This is by no means as featured or fluid as the Windows help, but it should provide a (somewhat) simple means to create a help dialog where all someone should need to do is create the array with their help content.
<<lessSYNOPSIS
use Tk::Help;
my $help = $main->Help(-variable => @array);
This is an answer to a personal need to be able to create help systems for my Perl/Tk applications. Originally, I just created a really big dialog and formatted all the text, which was tedious and clumsy.
I wanted to create something that looked similar to the Windows help. This is by no means as featured or fluid as the Windows help, but it should provide a (somewhat) simple means to create a help dialog where all someone should need to do is create the array with their help content.
Download (0.005MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
PHD Help Desk 1.3
PHD Help Desk provides help desk registry and follow-up software. more>>
PHD Help Desk provides help desk registry and follow-up software.
PHD Help Desk is software conceived for the registry and follow-up of help desks incidents. Registry of incidents allows classification in two levels (type and subtype), the state of the incident, a description, ticket assignment and priority, historical registry, and an audit.
Information can be reported in consultation format, to give reports or export the information for later processing in a database or spreadsheet.
Enhancements:
- Now the operators belong to a sector, in the same way that the users belong an area.
- The database update proccess will insert the sector table with the areas that belong to the operators in version 1.21.
- The ticket is now initialized as "private" by default.
- Only the operators can change this state.
- Two bugs in the support request that prevented the input of the request into the ticket database were corrected.
<<lessPHD Help Desk is software conceived for the registry and follow-up of help desks incidents. Registry of incidents allows classification in two levels (type and subtype), the state of the incident, a description, ticket assignment and priority, historical registry, and an audit.
Information can be reported in consultation format, to give reports or export the information for later processing in a database or spreadsheet.
Enhancements:
- Now the operators belong to a sector, in the same way that the users belong an area.
- The database update proccess will insert the sector table with the areas that belong to the operators in version 1.21.
- The ticket is now initialized as "private" by default.
- Only the operators can change this state.
- Two bugs in the support request that prevented the input of the request into the ticket database were corrected.
Download (0.16MB)
Added: 2007-07-13 License: GPL (GNU General Public License) Price:
839 downloads
IRC::Bot::Help 0.07
IRC::Bot::Help is a module to dispatch help for IRC::Bot. more>>
IRC::Bot::Help is a module to dispatch help for IRC::Bot.
SYNOPSIS
use IRC::Bot::Help;
my $seen = IRC::Bot::Help->new();
# later on...
# User asks for help in DCC CHAT
sub on_dcc_chat {
my ( $kernel, $id, $who, $msg ) = @_[ KERNEL, ARG0, ARG1, ARG3 ];
my $nick = ( split /!/, $who )[0];
# Do Stuff...
if ( $msg =~ m/^.help/i ) {
my $topic = $help->ask_help(all);
$kernel->post( NICK, dcc_chat, $id, $topic );
}
}
Basically holds a list of help topics and dispatches them on demand.
<<lessSYNOPSIS
use IRC::Bot::Help;
my $seen = IRC::Bot::Help->new();
# later on...
# User asks for help in DCC CHAT
sub on_dcc_chat {
my ( $kernel, $id, $who, $msg ) = @_[ KERNEL, ARG0, ARG1, ARG3 ];
my $nick = ( split /!/, $who )[0];
# Do Stuff...
if ( $msg =~ m/^.help/i ) {
my $topic = $help->ask_help(all);
$kernel->post( NICK, dcc_chat, $id, $topic );
}
}
Basically holds a list of help topics and dispatches them on demand.
Download (0.011MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1099 downloads
Getopt::Mixed::Help 0.18
Getopt::Mixed::Help Perl module can combine Getopt::Mixed with usage and help. more>>
Getopt::Mixed::Help Perl module can combine Getopt::Mixed with usage and help.
SYNOPSIS
use Getopt::Mixed::Help
(< filenames >... => filenames to be processed,
ENV => SCRIPT_OPT_,
ENV_ => SCRIPT_OPT_,
d>debug:i number => turn on debugging information (*),
e>execute => do it without asking for confirmation,
f>force => override all safety checks,
i>interactive => asks for confirmation before doing it,
n>no-execute => just print what would be done without doing it,
q>quiet => suppress all information,
s>summary => print summary information on exit,
v>verbose:i number => turn on verbose information (*),
(*) => (*) You may add a positive integer for a higher level.
);
if ($opt_...
export SCRIPT_OPT_INTERACTIVE=1
test_script -d -v 2 --summary some_file.ext other_file.ext
ABSTRACT
Getopt::Mixed::Help is a simplified interface to Getopt::Mixed adding usage (help) functionality. It automatically adds the options -?, -h and --help (the last two configurable) to print the usage text. It allows to get option values from the environment (if the operating system it runs on supports environment variables). It can also add different flavours of support for multiple options. Finally it supports debugging output of the options used.
The module uses a direct import mechanism called with a hash as parameter. The structure of the hash is as follows:
The key is a combined (SHORT > LONG [ARGUMENT SPECIFIER [VALUE IDENTIFIER]]) option description for Getopt::Mixed, except for the VALUE IDENTIFIER which is simply included into the help text. The value following the key is simply the help text for this option.
If the second character of the first key is not >, the first key is taken as descriptive identifiers for additional parameters and the help for them.
Any key starting with ( and ending with ) will be interpreted as a footnote (additional help text) to the real options. They should be used at the end of the list only.
A key equal to ENV is used to get default values for the remaining options from the environment. For any option not initialised on the command line an environment variable with the prefix of the value following ENV and a rest of the name identical to the uppercase long option name (e.g. SCRIPT_OPT_DEBUG) will be checked. If this environment variable exists, it will be used to set the option. Note that in the name of the rest of the environment variable uppercase is used and hyphens are relaced with underlines.
A key equal to ENV_ is used in the same way as the key ENV. In addition it allows for a special environment variable with the prefix of the value following ENV followed by a single underline (_) as combined initialiser (for more than one option, e.g. export SCRIPT_OPT__=debug verbose=2). Note that no whitespaces are allowed in the values of the options initialised this way as the string in the environment variable is parsed in a simple way.
The module defines the variable $optUsage containing the complete help text.
If an option debug exists and is choosen on the command line, this module will print all option values and all remaining parameters to standard error. The name of this option may be changed, see "changing the debug option" below in the "CHANGING DEFAULT BEHAVIOUR" section.
<<lessSYNOPSIS
use Getopt::Mixed::Help
(< filenames >... => filenames to be processed,
ENV => SCRIPT_OPT_,
ENV_ => SCRIPT_OPT_,
d>debug:i number => turn on debugging information (*),
e>execute => do it without asking for confirmation,
f>force => override all safety checks,
i>interactive => asks for confirmation before doing it,
n>no-execute => just print what would be done without doing it,
q>quiet => suppress all information,
s>summary => print summary information on exit,
v>verbose:i number => turn on verbose information (*),
(*) => (*) You may add a positive integer for a higher level.
);
if ($opt_...
export SCRIPT_OPT_INTERACTIVE=1
test_script -d -v 2 --summary some_file.ext other_file.ext
ABSTRACT
Getopt::Mixed::Help is a simplified interface to Getopt::Mixed adding usage (help) functionality. It automatically adds the options -?, -h and --help (the last two configurable) to print the usage text. It allows to get option values from the environment (if the operating system it runs on supports environment variables). It can also add different flavours of support for multiple options. Finally it supports debugging output of the options used.
The module uses a direct import mechanism called with a hash as parameter. The structure of the hash is as follows:
The key is a combined (SHORT > LONG [ARGUMENT SPECIFIER [VALUE IDENTIFIER]]) option description for Getopt::Mixed, except for the VALUE IDENTIFIER which is simply included into the help text. The value following the key is simply the help text for this option.
If the second character of the first key is not >, the first key is taken as descriptive identifiers for additional parameters and the help for them.
Any key starting with ( and ending with ) will be interpreted as a footnote (additional help text) to the real options. They should be used at the end of the list only.
A key equal to ENV is used to get default values for the remaining options from the environment. For any option not initialised on the command line an environment variable with the prefix of the value following ENV and a rest of the name identical to the uppercase long option name (e.g. SCRIPT_OPT_DEBUG) will be checked. If this environment variable exists, it will be used to set the option. Note that in the name of the rest of the environment variable uppercase is used and hyphens are relaced with underlines.
A key equal to ENV_ is used in the same way as the key ENV. In addition it allows for a special environment variable with the prefix of the value following ENV followed by a single underline (_) as combined initialiser (for more than one option, e.g. export SCRIPT_OPT__=debug verbose=2). Note that no whitespaces are allowed in the values of the options initialised this way as the string in the environment variable is parsed in a simple way.
The module defines the variable $optUsage containing the complete help text.
If an option debug exists and is choosen on the command line, this module will print all option values and all remaining parameters to standard error. The name of this option may be changed, see "changing the debug option" below in the "CHANGING DEFAULT BEHAVIOUR" section.
Download (0.014MB)
Added: 2007-07-16 License: Perl Artistic License Price:
830 downloads
Free Help Desk 1.08a
Help desk software is vital to the success of your help desk and customer support staff. more>>
Help desk software is vital to the success of your help desk and customer support staff. Tracking and responding to help desk calls is faster and more efficient when using well designed help desk software.
The design of this software comes from many years of help desk experience working in a help desk environment. All the basic tools for running a successful help desk are included in this help desk software package.
Help desk software should be used in any organization whether its a large corporation or a small startup company. Why should my company implement a helpdesk software solution? Some of the benefits of helpdesk software are improved customer service, faster response times and lower information technology costs. Lets outline these three areas in greater detail.
When a user contacts the computer support professional in your organization, what steps are taken? Does it depend on who answered the phone? Do the immediately drop any task and visit your desk? Do they jot your information down on a note pad? Do they attempt to resolve the issue on the phone at great length? What criteria merits the call be moved to another member of the IT staff, or merits a call the software vendor?
All these questions can be answered in some way within the use of help desk software. Helpdesk software forces your IT staff to handle help desk calls in a structured manner that can be counted on each time. When a helpdesk call is received, it should be immediately be entered into the help desk software database, even if it is easily answered.
At this point there is now a record of the call, and this allows other IT staff to view the contents of the problem and makes it a simple task for other IT staff members to offer solutions. This also prevents the call from being lost in the shuffle if staff is busy when the call is received. Your general staff will have much more confidence that when they place that call to your help desk staff, their call will be handled in a structured method to ensure their satisfaction.
If they can continue to work, they will not feel the need to keep calling or checking with IT staff on the progress, or worry that their call will not be answered in a reasonable amount of time. This allows them to focus on their tasks, and not be concerned with the status of their call.
Many help desk software solutions offer a self-help method, allowing the staff members in your company to submit a helpdesk request directly into the help desk system. (granted their computer is functioning enough for this) This feature greatly streamlines the process, and can increase response time for all users. Help desk support staff will not be interrupted by the phone call and have to stop working on another issue to record the call information.
In fact, it should be encouraged by the IT staff to submit all request possible with this method. When a request is entered into the system, it allows any available support personnel to respond to the request. It also allows support personnel to diversify calls, so if a calls is shown to be about a particular problem that a staff member has greater expertise with, that staff member will likely be able to solve the problem much quicker. Once each calls is resolved, the solution will then become available for future reference.
This is one of the greatest benefits an organization will receive from using a help desk system. This allows newer support staff to be able to answer many questions by simply searching the database for other calls. Also prevent 2 support staff from having to research for the same solution, this benefits in much faster response time for the end user.
Everything mentioned above will contribute to the overall quality of service in your organization, happier staff and faster response time will mean lower costs and higher productivity for your organization.
Enhancements:
- This release fixes a bug found in the main form that caused some performance problems in certain system configurations.
<<lessThe design of this software comes from many years of help desk experience working in a help desk environment. All the basic tools for running a successful help desk are included in this help desk software package.
Help desk software should be used in any organization whether its a large corporation or a small startup company. Why should my company implement a helpdesk software solution? Some of the benefits of helpdesk software are improved customer service, faster response times and lower information technology costs. Lets outline these three areas in greater detail.
When a user contacts the computer support professional in your organization, what steps are taken? Does it depend on who answered the phone? Do the immediately drop any task and visit your desk? Do they jot your information down on a note pad? Do they attempt to resolve the issue on the phone at great length? What criteria merits the call be moved to another member of the IT staff, or merits a call the software vendor?
All these questions can be answered in some way within the use of help desk software. Helpdesk software forces your IT staff to handle help desk calls in a structured manner that can be counted on each time. When a helpdesk call is received, it should be immediately be entered into the help desk software database, even if it is easily answered.
At this point there is now a record of the call, and this allows other IT staff to view the contents of the problem and makes it a simple task for other IT staff members to offer solutions. This also prevents the call from being lost in the shuffle if staff is busy when the call is received. Your general staff will have much more confidence that when they place that call to your help desk staff, their call will be handled in a structured method to ensure their satisfaction.
If they can continue to work, they will not feel the need to keep calling or checking with IT staff on the progress, or worry that their call will not be answered in a reasonable amount of time. This allows them to focus on their tasks, and not be concerned with the status of their call.
Many help desk software solutions offer a self-help method, allowing the staff members in your company to submit a helpdesk request directly into the help desk system. (granted their computer is functioning enough for this) This feature greatly streamlines the process, and can increase response time for all users. Help desk support staff will not be interrupted by the phone call and have to stop working on another issue to record the call information.
In fact, it should be encouraged by the IT staff to submit all request possible with this method. When a request is entered into the system, it allows any available support personnel to respond to the request. It also allows support personnel to diversify calls, so if a calls is shown to be about a particular problem that a staff member has greater expertise with, that staff member will likely be able to solve the problem much quicker. Once each calls is resolved, the solution will then become available for future reference.
This is one of the greatest benefits an organization will receive from using a help desk system. This allows newer support staff to be able to answer many questions by simply searching the database for other calls. Also prevent 2 support staff from having to research for the same solution, this benefits in much faster response time for the end user.
Everything mentioned above will contribute to the overall quality of service in your organization, happier staff and faster response time will mean lower costs and higher productivity for your organization.
Enhancements:
- This release fixes a bug found in the main form that caused some performance problems in certain system configurations.
Download (0.19MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1150 downloads
iPodDB::Menu::Help 0.03
iPodDB::Menu::Help is the help menu. more>>
iPodDB::Menu::Help is the help menu.
SYNOPSIS
my $help = iPodDB::Menu::Help->new( $frame );
This is the Help menu portion of the menu bar.
<<lessSYNOPSIS
my $help = iPodDB::Menu::Help->new( $frame );
This is the Help menu portion of the menu bar.
Download (0.009MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
SVK::Command::Help 1.08
SVK::Command::Help is a Perl module to show help. more>>
SVK::Command::Help is a Perl module to show help.
OPTIONS
Optionally svk helps can pipe through a pager, for it is easier to read if the output is too long. For using this feature, please set environment variable SVKPAGER to some pager program. For example:
# bash, zsh users
export SVKPAGER=/usr/bin/less
# tcsh users
setenv SVKPAGER /usr/bin/less
<<lessOPTIONS
Optionally svk helps can pipe through a pager, for it is easier to read if the output is too long. For using this feature, please set environment variable SVKPAGER to some pager program. For example:
# bash, zsh users
export SVKPAGER=/usr/bin/less
# tcsh users
setenv SVKPAGER /usr/bin/less
Download (0.26MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
Mail::Salsa::Action::Help 0.10
Mail::Salsa::Action::Help is a Perl extension for a lot of functions. more>>
Mail::Salsa::Action::Help is a Perl extension for a lot of functions.
SYNOPSIS
use Mail::Salsa::Action::Help;
Stub documentation for Mail::Salsa, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited.
<<lessSYNOPSIS
use Mail::Salsa::Action::Help;
Stub documentation for Mail::Salsa, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited.
Download (0.026MB)
Added: 2006-10-31 License: Perl Artistic License Price:
1090 downloads
Loro 0.8pre7
Loro project is an open system (language and IDE) intended to help beginners learn to program. more>>
Loro project is an open system (language and IDE) intended to help beginners learn to program.
It uses its own programming language and includes an integrated development environment system focused on first-year students.
The language features a "specify, then implement" methodology; you have to specify a task before writing any implementation (algorithm).
Specification is an explict, compilable construction to make a contract between suppliers and clients, and can be implemented in either Loro or Java (via BeanShell).
The IDE features support for test-driven developing, syntax highlighting, and automatic HTML documentation generation and visualization.
Enhancements:
- fixed: string "method" was missing
<<lessIt uses its own programming language and includes an integrated development environment system focused on first-year students.
The language features a "specify, then implement" methodology; you have to specify a task before writing any implementation (algorithm).
Specification is an explict, compilable construction to make a contract between suppliers and clients, and can be implemented in either Loro or Java (via BeanShell).
The IDE features support for test-driven developing, syntax highlighting, and automatic HTML documentation generation and visualization.
Enhancements:
- fixed: string "method" was missing
Download (0.47MB)
Added: 2006-11-02 License: GPL (GNU General Public License) Price:
1087 downloads
Yet another Linux FAQ 2.3
Yet another Linux FAQ is a comprehensive FAQ about the Linux Operating System. more>>
Yet another Linux FAQ is a comprehensive FAQ about the Linux Operating System. Yet another Linux FAQ is a great document for Linux beginners to read.
This FAQ tries to help those new to Linux help themselves. It covers topics such as kernel recompilation and X Window System configuration.
Enhancements:
- The FAQ was completely redesigned, and dead links were cleaned up.
<<lessThis FAQ tries to help those new to Linux help themselves. It covers topics such as kernel recompilation and X Window System configuration.
Enhancements:
- The FAQ was completely redesigned, and dead links were cleaned up.
Download (0.17MB)
Added: 2005-11-30 License: (FDL) GNU Free Documentation License Price:
1426 downloads
Watchpost 0.1
Watchpost is a file change monitoring program written for the GNOME desktop environment. more>>
Watchpost is a file change monitoring program written for the GNOME desktop environment. The user sets files or folders to monitor for change and Watchpost will report any changes to the files monitored.
The tool was designed to help people keep an eye on what is being modified in their system.
<<lessThe tool was designed to help people keep an eye on what is being modified in their system.
Download (0.073MB)
Added: 2006-10-23 License: GPL (GNU General Public License) Price:
1096 downloads
Jifty::Script::Help 0.60912
Jifty::Script::Help is a Perl module to show help. more>>
Jifty::Script::Help is a Perl module to show help.
OPTIONS
Optionally help can pipe through a pager, to make it easier to read the output if it is too long. For using this feature, please set environment variable PAGER to some pager program. For example:
# bash, zsh users
export PAGER=/usr/bin/less
# tcsh users
setenv PAGER /usr/bin/less
help_base
Jiftys help system also looks in Jifty::Manual and the subdirectories for any help commands that it cant find help for.
<<lessOPTIONS
Optionally help can pipe through a pager, to make it easier to read the output if it is too long. For using this feature, please set environment variable PAGER to some pager program. For example:
# bash, zsh users
export PAGER=/usr/bin/less
# tcsh users
setenv PAGER /usr/bin/less
help_base
Jiftys help system also looks in Jifty::Manual and the subdirectories for any help commands that it cant find help for.
Download (0.52MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
realcap 0.311
realcap is a bash utility to help with capturing streams from realplayer. more>>
realcap is a bash utility to help with capturing streams from realplayer.
From the help file we can see the next options:
Most basic operation requires only the stream URL.
Available options:
-v, --version display version
-h, --help display help text
-c, --captime duration of stream in seconds. remember to take initial buffering into account (defaults to 1 hour)
-o, --oggbits nominal bitrate (kbps) of ogg vorbis output. if omitted ogg encoding will not occur
-m, --mp3bits constant bitrate (kbps) of mp3 output. if omitted mp3 encoding will not occur
-q, --oggquality ogg vorbis quality between 0 - 10, 10 being the highest. Fractional values allowed
-a, --trackartist artists name for ID3 tag in compressed output file
-t, --tracktitle track title for ID3 tag in compressed output file
-f, --filename all output files will be given this name. do not provide an extension( defaults to vsound.wav/ogg/mp3)
-d, --delete deletes wav file after recording if ogg vorbis bitrate/mp3 is specified (otherwise this parameter is ignored)
<<lessFrom the help file we can see the next options:
Most basic operation requires only the stream URL.
Available options:
-v, --version display version
-h, --help display help text
-c, --captime duration of stream in seconds. remember to take initial buffering into account (defaults to 1 hour)
-o, --oggbits nominal bitrate (kbps) of ogg vorbis output. if omitted ogg encoding will not occur
-m, --mp3bits constant bitrate (kbps) of mp3 output. if omitted mp3 encoding will not occur
-q, --oggquality ogg vorbis quality between 0 - 10, 10 being the highest. Fractional values allowed
-a, --trackartist artists name for ID3 tag in compressed output file
-t, --tracktitle track title for ID3 tag in compressed output file
-f, --filename all output files will be given this name. do not provide an extension( defaults to vsound.wav/ogg/mp3)
-d, --delete deletes wav file after recording if ogg vorbis bitrate/mp3 is specified (otherwise this parameter is ignored)
Download (0.003MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1186 downloads
SVK::Help::Intro 1.08
SVK::Help::Intro is a introduction to svk. more>>
SVK::Help::Intro is a introduction to svk.
svk is an open source distributed version control system which is designed to interoperate with Subversion. Like other version control systems, it keeps track of each change you make to a project and allows you to maintain multiple parallel tracks of development. svk also has a number of powerful features which are rarely found in other version control systems.
svk has been designed from the ground up to support development models that are simple and intuitive for software developers. It has advanced smart branching and merging semantics that make it easy to maintain multiple parallel lines of development and painless to merge changes across branches. svks built in patch manager makes it easy for non-committers to share changes among themselves and with project maintainers.
svk provides powerful support for distributed development. Every svk client is capable of fully mirroring remote Subversion repositories so that you have full access to a projects history at any time, even when they are off the network or on the wrong side of a firewall. You can branch a remote project at any point in that projects history, whether or not you have write access to that projects repository. Later, you can integrate changes from the projects master server (usually with a single command) or push your branch up to another Subversion repository.
<<lesssvk is an open source distributed version control system which is designed to interoperate with Subversion. Like other version control systems, it keeps track of each change you make to a project and allows you to maintain multiple parallel tracks of development. svk also has a number of powerful features which are rarely found in other version control systems.
svk has been designed from the ground up to support development models that are simple and intuitive for software developers. It has advanced smart branching and merging semantics that make it easy to maintain multiple parallel lines of development and painless to merge changes across branches. svks built in patch manager makes it easy for non-committers to share changes among themselves and with project maintainers.
svk provides powerful support for distributed development. Every svk client is capable of fully mirroring remote Subversion repositories so that you have full access to a projects history at any time, even when they are off the network or on the wrong side of a firewall. You can branch a remote project at any point in that projects history, whether or not you have write access to that projects repository. Later, you can integrate changes from the projects master server (usually with a single command) or push your branch up to another Subversion repository.
Download (0.26MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
GenChemLab 1.0
GenChemLab is a chemistry experiment simulator. more>>
GenChemLab is an OpenGL-based application intended to simulate several common general chemistry exercises. It is meant to be used to help students prepare for actual lab experience. It could also be used in cases where laboratory facilites are not accessible, for instance in K-12 schools or home schooling.
At present, supported experiments include titration, calorimetry, freezing point depression, vapor pressure, and spectrophotometry.
<<lessAt present, supported experiments include titration, calorimetry, freezing point depression, vapor pressure, and spectrophotometry.
Download (0.33MB)
Added: 2005-04-01 License: GPL (GNU General Public License) Price:
1670 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above to help search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed