Suppress upgrade warning

Hi,

Is there a way to suppress this message:

Warning:

This file has been created with an older version of List & Label. If you save it with this version of List & Label any older version will no longer be able to read it.

Hi Paul,

LL_OPTION_NOFILEVERSIONUPGRADEWARNING should do just that, like so:

LlSetOption(hJob, LL_OPTION_NOFILEVERSIONUPGRADEWARNING, 1) or LL.Core.LlSetOption(LlOption…, 1) in .NET.

HTH
G.

Hi Günther,

Many thanks! This worked great:

LL.Core.LlSetOption(LlOption.NoFileVersionUpgradeWarning, 1);

Paul