mark all circles/holes at once?

Hi.

Is it possible to select all circles at once?
(I do have a lot of text and a lot of dots/circles, and I need to fill these circles so I have to select them all which is quiet time consuming as they're on the same layer so I have to click on every single circle - and if I miss one... I do have problems) ;-)

Thanks!

  • If you are using the full version of CorelDRAW - not Home & Student - then a VBA macro can help.

    You might try Select Same, available for free (as I type this) through MacroMonster:

    Select Same.

  • you can try macro code below

    Sub color_cirles()
     Dim sr As ShapeRange, p As Page, c As New Color
     c.UserAssign
     For Each p In ActiveDocument.Pages
     p.Activate
     Set sr = ActivePage.FindShapes(Type:=cdrEllipseShape)
     If sr.Count <> 0 Then sr.ApplyUniformFill c
    Next p
    End Sub