Incompatible Types: 'TBackupOptions' and 'Integer
Publicado por ARCON (48 intervenciones) el 01/09/2005 20:57:17
bueno mi problema es este error al momento de intentar asignar las opsiones al componente IBBackup pongo aqui el codigo para ver si alguien me puede ayudar ya que los argumentos que intento asignar no me los reconoce
with DMFActura.IBBackup do
begin
Active := True;
try
Screen.Cursor := crHourGlass;
BackupFile.Clear;
MCopia.Lines.Clear;
Options := [];
if chkCheckSum.Checked then Options := Options + [IgnoreCheckSums];
if chkIgnoreLimbo.Checked then Options := Options + [IgnoreLimbo];
if chkStructure.Checked then Options := Options + [MetadataOnly];
if chkGarbage.Checked then Options := Options + [NoGarbageCollection];
if chkTransportable.Checked then Options := Options + [NonTransportable];
todas estas opciones me aparecen como identificador no declarado
alguna idea?
de antemano muchas gracias
with DMFActura.IBBackup do
begin
Active := True;
try
Screen.Cursor := crHourGlass;
BackupFile.Clear;
MCopia.Lines.Clear;
Options := [];
if chkCheckSum.Checked then Options := Options + [IgnoreCheckSums];
if chkIgnoreLimbo.Checked then Options := Options + [IgnoreLimbo];
if chkStructure.Checked then Options := Options + [MetadataOnly];
if chkGarbage.Checked then Options := Options + [NoGarbageCollection];
if chkTransportable.Checked then Options := Options + [NonTransportable];
todas estas opciones me aparecen como identificador no declarado
alguna idea?
de antemano muchas gracias
Valora esta pregunta


0