Quote:Good morning I'm trying to make Corel Draw open a file automatically Más do not know much of C#
Quote:That's the code in VBA
Sub DocumentOpen() Dim doc As Document Set doc = OpenDocument("C:\Flower.cdr") With doc .AddPages (1) .ActiveLayer.CreateEllipse(0, 3, 5, 1).Fill.UniformColor.CMYKAssign 0, 100, 100, 0 .Save End With End Sub
Quote:Need to do this in C#
Quote:But I don't know how to do
Quote:This is the page that explains
Quote:If anyone can help I'm very grateful
Process.Start(@"C:\Flower.cdr");
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)