Search found 3 matches

by OhMonBato
17 Nov 2019, 17:52
Forum: CAD .NET
Topic: How to load several files in a CadViewerControl
Replies: 5
Views: 5073

Re: How to load several files in a CadViewerControl

Thank you for the explanation, but for the moment Xref is exactly what I need. I just need to display some files, user will not be allowed to modify them. There is something I don't understand. I you refer to my previous post, I've 2 buttons, if I click on button 1 then button 2, no problem (load a ...
by OhMonBato
14 Nov 2019, 14:53
Forum: CAD .NET
Topic: How to load several files in a CadViewerControl
Replies: 5
Views: 5073

Re: How to load several files in a CadViewerControl

Thank you for your answer. I tried with a CadViewerControl to load 2 differents files using this way : Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Img = New CADImage Img = CADImage.CreateImageByExtension("2carres.dwg") Img.LoadFromFile("2carres.dwg") CadViewerCo...
by OhMonBato
14 Nov 2019, 08:54
Forum: CAD .NET
Topic: How to load several files in a CadViewerControl
Replies: 5
Views: 5073

How to load several files in a CadViewerControl

I'm beginner with Cad.net and I need to open several files (DXF or DWG) and display them together in a single control.
How can I do that ?

I'm programming using VB.Net