Is their any way (Macro) to save files in older version as default in coreldraw 2021

We always need to save file in older version while sharing file with printers, their is an option to use SaveAs but their should be a way to Save file by default in compatible older version. 

Parents
  • I think you need to use a macro to do it automatically.
    You can simply record a macro but you may need to tweak the resulting code to get it right.

    Here's the code for a macro I use in Draw 2020, that saves back to version 2018.
    The line ".Version = cdrVersion20" is where you set desired version, and "20" actually 2018.
    Possible that it may look slightly different depending on what version you are saving back to.

    Sub Save_as_version_2018()

    Dim Path As String
    Dim Name As String
    Path = ActiveDocument.FilePath
    Name = ActiveDocument.FileName

    Dim OrigSelection As ShapeRange
    Set OrigSelection = ActiveSelectionRange
    Dim SaveOptions As StructSaveAsOptions
    Set SaveOptions = CreateStructSaveAsOptions
    With SaveOptions
    .EmbedVBAProject = True
    .Filter = cdrCDR
    .IncludeCMXData = False
    .Range = cdrAllPages
    .EmbedICCProfile = False
    .Version = cdrVersion20
    .KeepAppearance = True
    End With
    ActiveDocument.SaveAs Path + Name, SaveOptions
    End Sub

Reply Children
No Data