Auto Project Planner 2.1.0.0 (APP.NET branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Auto Project Planner 2.1.0.0 (APP.NET branch)
# 1  
Old 05-23-2008
Auto Project Planner 2.1.0.0 (APP.NET branch)

Image Auto Project Planner automatically calculates a proper project plan based on your effort estimations and the due dates you have in mind. A list of tasks and a list of employees can be defined. Tasks can be assigned to one or more employees. It is also possible to define a maximum percentage value an employee can/should work on a task. Public holidays, leaves, weekly working hours, and more parameters can be specified and are considered in the calculation. According to this input, the software computes time plans by minimizing the MSE (mean squared error) between expected and computed end dates. License: GNU General Public License (GPL) Changes:
Some smaller bugs in the previous beta version are fixed. Improvements have been to the GUI and the graphical output of the calculation results.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Programming

Seeking XAML library of Solaris CDE styles and/ or widgets for .Net/WPF project

Don't laugh, I am going to replicate the exact look and feel of the Solaris 8 GUI, the Motif-based CDE of Solaris 8, using Windows .Net, C#, and WPF. I am looking for any kind of jump start in terms of library, free or licensable: Has anyone every come across a library of assets and/or... (1 Reply)
Discussion started by: thhowl
1 Replies

2. Windows & DOS: Issues & Discussions

Controlling AIX processes remotely using a NET app on a Windows server?

I have a .NET application that remotely starts, stops, and gets status of Windows services and scheduled tasks. I would like to add the capability of starting, stopping, and getting status of remote AIX applications also. Based on some preliminary research, one option may be to use 3rd party .NET... (0 Replies)
Discussion started by: auser1
0 Replies

3. Web Development

Problems writing app that will communicate with gateway(newbie,last bit of project)

Hi all, Im writing an app that will contact a specified gateway and retrieve info onto our server and perform manipulations on it then return the result back to the gateway for further operations... But I'm a newbie and dont have much of an experience in network programming... Would like to... (0 Replies)
Discussion started by: wrapster
0 Replies

4. HP-UX

help auto starting app on boot

Hi I need a bit of help figuring out how to auto start an application on boot on an HPUX. I am a fairly exp AIX guy now working an HP shop. I use to change a /etc/rc... file. Any advise would be a great help TIA. –K If it is a help the program is a DB and runs as root /usr/ud{##}/startud... (3 Replies)
Discussion started by: KmJohnson
3 Replies

5. Shell Programming and Scripting

awk, shell script reverse engineering app generator - project

Hi, this is fantastic forum for shell programming and scripting, so please let me to introduce you with my very old concept to have web form/s with radio, select, input fields and have an application generating valid, syntax error free scripting code. The same or alike questions are asked... (2 Replies)
Discussion started by: darius2
2 Replies
Login or Register to Ask a Question
Project(3PERL)						      Perl Library Functions						    Project(3PERL)

NAME
Project - Perl interface to Projects SYNOPSIS
use Sun::Solaris::Project qw(:ALL); my $projid = getprojid(); DESCRIPTION
This module provides wrappers for the Project-related system calls and the libproject(3LIB) library. Also provided are constants from the various Project-related headers. Constants MAXPROJID, PROJNAME_MAX, PROJF_PATH, PROJECT_BUFSZ, SETPROJ_ERR_TASK, and SETPROJ_ERR_POOL. Functions getprojid() This function returns the numeric project ID of the calling process or undef if the underlying getprojid(2) system call is unsuccess- ful. setproject($project, $user, $flags) If $user is a member of the project specified by $project, setproject() creates a new task and associates the appropriate resource con- trols with the process, task, and project. This function returns 0 on success. If the underlying task creation fails, SETPROJ_ERR_TASK is returned. If pool assignment fails, SETPROJ_ERR_POOL is returned. If any resource attribute assignments fail, an integer value cor- responding to the offset of the failed attribute assignment in the project database is returned. See setproject(3PROJECT). activeprojects() This function returns a list of the currently active projects on the system. Each value in the list is the numeric ID of a currently active project. getprojent() This function returns the next entry from the project database. When called in a scalar context, getprojent() returns only the name of the project. When called in a list context, getprojent() returns a 6-element list consisting of: ($name, $projid, $comment, @users, @groups, $attr) @users and @groups are returned as arrays containing the appropriate user or project lists. On end-of-file undef is returned. setprojent() This function rewinds the project database to the beginning of the file. endprojent() This function closes the project database. getprojbyname($name) This function searches the project database for an entry with the specified nam. It returns a 6-element list as returned by getpro- jent() if the entry is found and undef if it cannot be found. getprojbyid($id) This function searches the project database for an entry with the specified ID. It returns a 6-element list as returned by getprojent() if the entry is found or undef if it cannot be found. getdefaultproj($user) This function returns the default project entry for the specified user in the same format as getprojent(). It returns undef if the user cannot be found. See getdefaultproj(3PROJECT) for information about the lookup process. fgetprojent($filehandle) This function returns the next project entry from $filehandle, a Perl file handle that must refer to a previously opened file in project(4) format. Return values are the same as for getprojent(). inproj($user, $project) This function checks whether the specified user is able to use the project. This function returns true if the user can use the project and false otherwise. See inproj(3PROJECT). getprojidbyname($project) This function searches the project database for the specified project. It returns the project ID if the project is found and undef if it is not found. Class methods None. Object methods None. Exports By default nothing is exported from this module. The following tags can be used to selectively import constants and functions defined in this module: :SYSCALLS getprojid() :LIBCALLS setproject(), activeprojects(), getprojent(), setprojent(), endprojent(), getprojbyname(), getprojbyid(), getdefaultproj(), fgetprojent(), inproj(), and getprojidbyname() :CONSTANTS MAXPROJID, PROJNAME_MAX, PROJF_PATH, PROJECT_BUFSZ, SETPROJ_ERR_TASK, and SETPROJ_ERR_POOL :ALL :SYSCALLS, :LIBCALLS, and :CONSTANTS ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWpl5u | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ SEE ALSO
getprojid(2), getdefaultproj(3PROJECT), inproj(3PROJECT), libproject(3LIB), setproject(3PROJECT), project(4), attributes(5) SunOS 5.11 1 Dec 2002 Project(3PERL)