Search found 6 matches

by vcomer
30 Mar 2013, 09:37
Forum: CAD .NET
Topic: DXF Export Bug:Text and MText Lost
Replies: 1
Views: 13186

DXF Export Bug:Text and MText Lost

Hello:
When I save my CAD file to *.DXF, and reopen it, all the Text and MText entities lost.
Why? My CADImport.dll Version is 7.2.7.26044。

then,I test the new version(9.0.0.21031), text and MText entities saved,but it can't support chinese!
by vcomer
26 Apr 2011, 07:18
Forum: CAD .NET
Topic: How to Get the Point in cadPictBox?
Replies: 1
Views: 11323

How to Get the Point in cadPictBox?

In void cadPictBox_MouseMove(object sender, MouseEventArgs e) , I can get the cad Point by : DPoint vPt = GetRealPoint(e.X, e.Y); Instead,Now,I know a DPoint of the CAD(vPt, for example),How to Get the point in the cadPictBox of the vPt? How to write the function: Point GetMyPoint(DPoint vPt)? Point...
by vcomer
18 Mar 2011, 05:49
Forum: CAD .NET
Topic: How to add a CADImageEnt?
Replies: 5
Views: 25962

Re: How to add a CADImageEnt?

Understand,thanks!
now,
I need draw a selected cadImageEnt in the center of the CADPictureBox in given scale.(like google earth)
how to do it?(how to calculate "LeftImagePosition" and "TopImagePosition")
by vcomer
16 Mar 2011, 12:08
Forum: CAD .NET
Topic: How to add a CADImageEnt?
Replies: 5
Views: 25962

Re: How to add a CADImageEnt?

thanks,now I can create CADImageEnt! :P
but, there is a new problem:
when I add a new cadImageEnt using "c:\viewer.bmp ", and save the file as **.dxf;
then I delete the picture file(c:\viewer.bmp) and reopen the **.dxf ,
the new added cadImageEnt exit,but have no image! :oops:
why?
by vcomer
12 Mar 2011, 10:57
Forum: CAD .NET
Topic: How to add a CADImageEnt?
Replies: 5
Views: 25962

How to add a CADImageEnt?

How to Add a CADImageEnt? Not use EntitiesCreator.
There is no code in AddEntityDemo.
who know?
Thanks!
by vcomer
08 Mar 2011, 04:52
Forum: CAD .NET
Topic: How to create layer?
Replies: 1
Views: 11507

How to create layer?

i use this code: cadImage.UseDoubleBuffering = false; CADLayer entLayer = new CADLayer(); entLayer.Name = "MyLayer"; entLayer.Color = Color.RoyalBlue; entLayer.Flags = 4; entLayer.Loaded(CADUtils.CADImage.Converter); cadImage.Converter.OnCreate(entLayer); or this code: CADLayer newLay = new CADLayer...