10209 : Upgrading
…keys will not work for 2.0. The upgrade can be bought from the normal shop page, or via componentSource. You will be asked to identify the old lilcense (using the 1.x key)… Continue reading
…keys will not work for 2.0. The upgrade can be bought from the normal shop page, or via componentSource. You will be asked to identify the old lilcense (using the 1.x key)… Continue reading
…how do I get the DateTime from e.X and e.Y? Answer You use the Gantt.DateScaler.PixelToTime(int pix) method… If you have a datetime and need the a pixel there is a Gantt.DateScaler.TimeToPixel… Continue reading
…PlexityHide.GTP.TimeItemEventArgs) Handles GanttPurchasing.OnTimeItem_Move, GanttProduction.OnTimeItem_Move, GanttPlanning.OnTimeItem_Move If e.Diff.TotalSeconds > Then e.TimeItem.TimeItemLayout.SnapStartTime = New TimeSpan(0, 0, 0, 0) e.TimeItem.TimeItemLayout.SnapStopTime = New TimeSpan(1, 0, 0, 0) Else e.TimeItem.TimeItemLayout.SnapStartTime… Continue reading
Question I want to delete a link when the user presses a key. Ive implemented all the key_down/key_up/on_datescaler_key_up/… events, but none of them seems to fire. Answer In order for a… Continue reading
Question Is GTP.net completely written in .net? Answer Yes. It is written in c#, and we have a lot of VB.NET samples…… Continue reading
Question Is there a way to remove the horizontal scrollbar on the grid? This is a great chart. Answer The horizontal grid scroll will be shown whenever the sum of… Continue reading
…reduce the rect that the time item text is drawn in. TimeItemText titext1=new TimeItemText(); titext1.Text=”Sample text”; //titext1.TimeItemTextLayout=new TimeItemTextLayout(); titext1.TimeItemTextLayout=gantt1.TimeItemTextLayouts.GetFromName(“Default”); titext1.TimeItemTextLayout.Color=Color.PowderBlue; titext1.TimeItemTextLayout.Font=new Font(FontFamily.GenericMonospace,14,FontStyle.Bold); titext1.TimeItemTextLayout.Padding=new Rectangle(2,2,2,2); // the rect is reduced with 2 pixels all around titext1.TimeItemTextLayout.VertAlign=StringAlignment.Near; ti1.TimeItemTexts.Add(titext1); … Continue reading
Question I evaluate your product GTP.NET 2.0. Is it possible to get more information displayed while resizing/moving a TimeItem like a tooltip for the editing DateTime and a vertical line… Continue reading
…of a link AllowMove Limits the degrees of freedom available to user AllowResizeEast Limits the degrees of freedom available to user AllowResizeWest Limits the degrees of freedom available to user … Continue reading
…sub nodes if (e.GridNode.SubLevel==0) { DataView subNodeView = new DataView(dataSet21.project); if (val is Int32) subNodeView.RowFilter=”ownedby=”+val.ToString(); else subNodeView.RowFilter=”ownedby=-1″; // Set the SubNodes to bind to the subNodeView e.GridNode.SubNodes_DataSourceList=subNodeView; } }… Continue reading