|
merhaba aşağıdaki excell de kullanılan kodu access e uyarlaya bilirmiyiz acaba form içindek alt sürekli formuna
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim Satır As Range, Sütun As Range
Set Satır = Range(Cells(ActiveCell.Row, 1), Cells(ActiveCell.Row, 256))
Set Sütun = Range(Cells(1, ActiveCell.Column), Cells(65536, ActiveCell.Column))
Cells.FormatConditions.Delete
If Application.CutCopyMode = xlCopy Or Application.CutCopyMode =
|