Private Sub BP_Cellule_Offset_Click()
For Each ID In Array("newy", "newx", "nbLigne", "nbcolonne")
If Me.Controls("Txb_" & ID) = "" Then
ErrMsg = IIf(ErrMsg = "", "", ErrMsg & vbLf) & Me.Controls("Label_" & ID).Caption
End If
Next
If ErrMsg <> "" Then
MsgBox "Le(s) champ(s)" & vbLf & vbLf & _
ErrMsg & vbLf & vbLf & _
"doi(ven)t être rempli(s)", vbCritical
Else
Deplacer_Cellule_Par_Offset ' ********* Déplacement par OFFSET
End If
End Sub