Delphi - Incompatible Types: 'TBackupOptions' and 'Integer

 
Vista:

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
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Incompatible Types: 'TBackupOptions' and 'I

Publicado por Delfino (1216 intervenciones) el 03/09/2005 13:35:29
Te falta el end del with o la unidad IBServices en uses..
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar