Bonjour à tous!
J'essaye de vérifier si un champs est vide.
(if qryExcel.FieldByName('Auteur').Value is null) then
//ça marche pas
(if qryExcel.FieldByName('Auteur').Value = '' ) then
//ça marche pas non plus..
(if qryExcel['Auteur'] is null) then
//ça marche pas
(if qryExcel['Auteur'] = '' ) then
//ça marche pas non plus..
Comment dois je faire ça, SVP?
merci,
Otavio Reis