Déplacement de cellule dans la feuille active
De zBasic
Sub Main
GlobalScope.BasicLibraries.loadLibrary ("zBasic")
oAvant = zCellule.Courante()
zCellule.Courante("A14")
oApres = zCellule.Courante()
msgbox "Cellule déplacée de " & _
oAvant("COLONNE") & oAvant("LIGNE") & _
" vers " & _
oApres("COLONNE") & oApres("LIGNE")
End Sub
