Metodo di annullamento ADO


❮ Riferimento completo all'oggetto Stream

Il metodo Cancel annulla l'esecuzione di una chiamata al metodo.

Il metodo Cancel annulla diverse attività per ogni oggetto. La tabella seguente mostra quale attività viene annullata quando viene chiamato questo metodo:

Object Cancelled task
Command Execute.

Note: The Options parameter of the Execute method must be set to adAsyncExecute or adAsyncFetch, before the Cancel method is called, otherwise a run-time error will occur

Connection Execute or Open.

Note: The Options parameter of the Open method must be set to adSyncConnect, or the Options parameter of the Execute method be set to adAsyncExecute or adAsyncFetch, before the Cancel method is called, otherwise a run-time error will occur

Record CopyRecord, DeleteRecord, MoveRecord, or Open

Note: The Options parameter of the Execute method must be set to adAsyncExecute or adAsyncFetch, before the Cancel method is called, otherwise a run-time error will occur

Recordset Open
Stream Open

Sintassi

object.Cancel

❮ Riferimento completo all'oggetto Stream