Quote:I have created a FlowChartX-based user control in VS2003 and put it in an application form , works fine for me.
Maybe it's a VS 20005 problem. Have you tried it there?
Quote:You could use ShowFocusFrame to display a border while the flowchart has focus. Or put the flowchart in some kind of panel control.
Fair enough. I wish it were a property I could manipulate instead of having to place the control over a panel.
Quote:The scrollbars seem to always be shown
Try calling the HideScrollers method.
I was more hoping they would be shown or hidden automatically. HideScrollers makes them go away completely. The default behavior has them showing regardless of the doc size and it's not until the control is resized by the user that they automatically show or hide.
Quote:Handle the MouseWheel event and set ScrollY accordingly.
Got it to working, thanks. It was a bit tricky.
Quote:LayeredLayout always resets the arrow.Style to Polyline. You might save the CtrlPtX/Y coordinates for an arrow and its Segments number, set its style to Bezier, restore Segments, and copy the saved point coordinates to every 4th bezier point. Interpolate every 2nd and 3d bezier point (which define the bend) point from the position of the adjacent points (through which the curve goes).

Thanks for the solution, but I think I'll pass.
Quote:I'm using the LayeredLayout class to automatically layout my diagram using the Horizontal orientation. Is there any way to tell it to layer my boxes (connected by arrows based on parent/child relationships) using a specific ordering criteria (like a datetime)? In my case, I'd like the boxes to be shown from left to right based on their respective dates. For example, if a parent box has 2 child boxes, the "newer" box would be automatically placed to the right of the older one to denote that it was created later.
This is the one that I'd really like your feedback on. My boss is demanding this feature and I sure as hell would not want to have to go through the pain of laying out dozens of boxes manually.

Thanks!
Alvaro