 |
KS-Gantt Control for DotNet WinForms 6.0.2 |
 |
KS-Gantt Control for DotNet WinForms 6.0.2
| Released: | 2011-07-21 | | License: | $565.00 |
| Publisher: | Kroll Software-Devel opment |
| Language: | ChineseSimplified, German, English, French, Russian | | Platform: | Windows | | Requirements: | DotNet Framework 2.0 or above | | Install: | No Install Support | | Downloads: | 122 |
 |
Suggest to Friend |
Publisher's Description:
KS-Gantt Control for DotNet WinForms - The perfect Gantt Control for your DotNet WinForms Applications.
Extend your application with project-management capabilities with just a few lines of code. The interactive Gantt-Control comes with an easy to understand data object-model. The style and behavior can be fully customized through many properties end events. License is per developer. Royalty free distribution. Source code available.
The best way to present time depending tasks is a Gantt diagram. With this Windows Forms control you can easily extend your DotNet applications with Project-Management capabilities. List of Changes:Version 6.0.2 from 2011-07-21Show all changesVersion 5.3.7 from 2011-04-28MS-SQL Server database support, Genetic Algorithm Solver Version 4.6 from 2010-11-22MS-SQL Server database support Version 4.5 from 2010-11-12some improvements and new features Version 4.1 from 2010-08-03More projectmanagement features. New task-types. Version 3.6 from 2010-02-26Granularity for dates down to a minute: Day, half-day, quarter-day, hour, 10 minutes, 5 minutes, minute, Calendars Version 3.0 from 2009-11-25Granularity for dates down to a minute: Day, half-day, quarter-day, hour, 10 minutes, 5 minutes, minute Version 2.0 from 2009-09-16Gantt standard dialogs, many improvements Version 1.0 from 2009-09-01
Screenshot:
|
|
Latest User Reviews:
 Royewang
 2009-10-30 23:19:46
#
Version: 2.0
Dear sir: Bug 1 =========================== 1: Change the caption in designer, change the caption for a specified column to "Caption1" 2: Run program, the caption shows " Text" instead of "Caption1" Bug2 ==================== use the following code: private void Form1_Load(object sender, EventArgs e) { gantt1.AddTask(DateTime.Now, DateTime.Now.AddDays(3), "Test Task1"); gantt1.AddTask(DateTime.Now.AddDays(4), DateTime.Now.AddDays(18), "Test Task2"); ganttDataGrid1.TaskColumns.ColumnByKey("Text").Position = 4; ganttDataGrid1.TaskColumns.ColumnByKey("StartDate").Position = 3; ganttDataGrid1.TaskColumns.ColumnByKey("Duration").Position = 2; KS.Gantt.GanttDataColumn col = new KS.Gantt.GanttDataColumn("Key1", "Caption1"); col.Position = 1; col.EditType = KS.Gantt.GanttEditTypes.NumericUpDown; col.CanEdit = true; ganttDataGrid1.TaskColumns.Add(col); } 1: The new Added column "Key1" , can't be edit, no response when double click. 2: Column "Duration" popup datetimepicker when double click, it should be numbericupdown control 3: Column "StartDate" can't be edit, no response when double click. seems the EditTypes are all wrong when added a custom column in code.
|