1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| Private Sub NewEventInput_Click()
With Sheets("BaseTARG")
r = .ActiveCell.Row
.Range(.Cells(r, 4), .Cells(r, 48)).Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = -0.14996795556505
.PatternTintAndShade = 0
End With
Call gestion_FormBaseTARG.transferer_valeurs_FormBaseTARG
Call gestion_FormBaseTARG.remplir_FormBaseTARG
Sheets("BaseLeaderBoard").Activate
Rows(6).Insert
Sheets("BaseLeaderBoard").Activate
Range("D6").Select
ActiveCell = LaBoxDateSaisie.Value
ActiveCell.Offset(0, 1) = ComboBoxSource.Value
ActiveCell.Offset(0, 5) = boxdénom.Value
ActiveCell.Offset(0, 15) = boxca.Value
ActiveCell.Offset(0, 16) = BoxCodeTARG.Value
ActiveCell.Offset(0, 17) = boxdénom.Value
etc. |