Search found 34 matches
- 21 Apr 2011, 11:16
- Forum: CAD .NET
- Topic: Mousemove event and moving entity
- Replies: 2
- Views: 14869
Re: Mousemove event and moving entity
I hope you've some solution for above post!
As we are in very critical stage for our project design, i need your help!
As we are in very critical stage for our project design, i need your help!
- 20 Apr 2011, 12:27
- Forum: CAD .NET
- Topic: Mousemove event and moving entity
- Replies: 2
- Views: 14869
Mousemove event and moving entity
Hello, i wrote following code for mousemove event: method MainForm.CadEditorCtrl_PictureBox_MouseMove(sender: System.Object; e: System.Windows.Forms.MouseEventArgs); var Pos_CAD : CADImport.DPoint; begin Pos_CAD := new CADImport.DPoint(e.X, e.Y, 0); Pos_CAD := cadEditorControl1.GetRealPoint(e.X, e.Y...
- 20 Apr 2011, 12:22
- Forum: CAD .NET
- Topic: moving entity by keyboard
- Replies: 3
- Views: 16856
Re: moving entity by keyboard
Please do reply of this post!
- 19 Apr 2011, 12:52
- Forum: CAD .NET
- Topic: Select and Dragging an entity
- Replies: 11
- Views: 48908
Re: Select and Dragging an entity
There are many simple and basic points, which are not supported by CADImport.net. How a developer can go ahead with your program? this is my start of project. yet, i've to complete many complex tasks, and cadimport is not supporting at such initial level..!!! Well, is there any method / procedure to...
- 18 Apr 2011, 12:59
- Forum: CAD .NET
- Topic: Select and Dragging an entity
- Replies: 11
- Views: 48908
Re: Select and Dragging an entity
Thanks!
how can i get co-ordinates of start and end points of a line while the line is being dragged?
When i drag a line, i want its adjacent lines and points also to be dragged with it.
How to do it?
how can i get co-ordinates of start and end points of a line while the line is being dragged?
When i drag a line, i want its adjacent lines and points also to be dragged with it.
How to do it?
- 18 Apr 2011, 12:24
- Forum: CAD .NET
- Topic: moving entity by keyboard
- Replies: 3
- Views: 16856
Re: moving entity by keyboard
and
why point entity is not moved with arrow keys?
i m also not getting event trigger for arrow keys (key down event). why?
why point entity is not moved with arrow keys?
i m also not getting event trigger for arrow keys (key down event). why?
- 18 Apr 2011, 12:09
- Forum: CAD .NET
- Topic: moving entity by keyboard
- Replies: 3
- Views: 16856
moving entity by keyboard
Hello, i want to move entity with arrow keys of keyboard. i took reference from editorform demo. my entity has moved its position as per the arrow key, but it is not refreshing with arrow keys, as in demo. it gets moved when either i change my window and re-opening my program window or if do mouse c...
- 14 Apr 2011, 09:48
- Forum: CAD .NET
- Topic: Select and Dragging an entity
- Replies: 11
- Views: 48908
Re: Select and Dragging an entity
1)Well, would you provide it in professional version? 2) My display point mode is square with cross display. if i select a point, its display becomes dashed. what is the reason? 3) sometimes, on selection, line display also becomes dashed line instead of a continuous line. why? 4) point dragging is ...
- 14 Apr 2011, 06:37
- Forum: CAD .NET
- Topic: size of entities
- Replies: 3
- Views: 17420
Re: size of entities
thanks!
Pointmode and pointsize are working.
My pointsize is increasing with zoom-in. I want to keep point size same for all time, whether zoom-in or zoom-out.
Pointmode and pointsize are working.
My pointsize is increasing with zoom-in. I want to keep point size same for all time, whether zoom-in or zoom-out.
- 12 Apr 2011, 05:53
- Forum: CAD .NET
- Topic: size of entities
- Replies: 3
- Views: 17420
size of entities
Hello, Please look into following with programmatic concern: 1) how a circle's size can be made unchangeable? i mean, user can't change its radius. yes, user can move it, but not can't change its area. Which methods / property is useful for this? 2) How to draw a point? How can we change its size? A...
- 08 Apr 2011, 11:33
- Forum: CAD .NET
- Topic: Mouse Click events
- Replies: 9
- Views: 56911
Re: Mouse Click events
Thanks! I tried with following code, but it doesn't give exact value of co-ordinates of the position, where my mouse clicks. <<<< method MainForm.CadEditorCtrl_PictureBox_MouseDown(sender: System.Object; e: System.Windows.Forms.MouseEventArgs); var i,j: Integer; Pos_CAD : System.Drawing.Point; /// r...
- 07 Apr 2011, 11:07
- Forum: CAD .NET
- Topic: Select and Dragging an entity
- Replies: 11
- Views: 48908
Re: Select and Dragging an entity
I can't understand why cadimport.net not supporting such a basic feature.
If i can draw.. simply i should be able to drag that.
but i need to trigger an event when user drags an entity.
it is very frustrating not seeing such simple tool in cadimport.net..
can u really help?
If i can draw.. simply i should be able to drag that.
but i need to trigger an event when user drags an entity.
it is very frustrating not seeing such simple tool in cadimport.net..
can u really help?
- 07 Apr 2011, 11:01
- Forum: CAD .NET
- Topic: indexof method
- Replies: 3
- Views: 16945
Re: indexof method
Well,
then how to decide whether the entity is there or already deleted?
Please dont tell to write own logic (ofcourse we can do it, but then what is advantage of having a good cad soft tool!
)
There must be something like visible / deleted etc. property for an entity.
Is it?
then how to decide whether the entity is there or already deleted?
Please dont tell to write own logic (ofcourse we can do it, but then what is advantage of having a good cad soft tool!

There must be something like visible / deleted etc. property for an entity.
Is it?
- 06 Apr 2011, 12:11
- Forum: CAD .NET
- Topic: select and move a line's point1
- Replies: 6
- Views: 27136
- 06 Apr 2011, 11:56
- Forum: CAD .NET
- Topic: indexof method
- Replies: 3
- Views: 16945
indexof method
i wrote following code: <<<< EntIndx := cadEditorControl1.Image.CurrentLayout.Entities.IndexOf(entPt ); >>>> it gave true (expected) result for first two execution. It gave exception, in case of entity is deleted. (i've used try.. catch for that) But for one entity, though it was deleted, it gave in...