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 33 34 35 36 37 38 39
| Dim i As Integer
For i = 0 To LbPersonnel2.ListCount - 1
If LbPersonnel2.Selected(i) = True Then
'FrameCaract2
TbFormationNTS2 = LbPersonnel2.List(i, 5)
TBType = LbPersonnel2.List(i, 11)
TbJours2 = LbPersonnel2.List(i, 9)
TbHeures2 = LbPersonnel2.List(i, 10)
TbInEx2 = LbPersonnel2.List(i, 12)
TbCoutF°2 = LbPersonnel2.List(i, 16)
'FrameProg2
CbDébut3 = LbPersonnel2.List(i, 6)
CbFin3 = LbPersonnel2.List(i, 7)
TbSemaine3 = LbPersonnel2.List(i, 8)
CbOrganisme2 = LbPersonnel2.List(i, 13)
CbLieu2 = LbPersonnel2.List(i, 14)
Tbcommande2 = LbPersonnel2.List(i, 21)
If LbPersonnel2.List(i, 20) = "OK" Then
CheckPréRequis2.Value = True
Else
CheckPréRequis2.Value = ""
End If
If LbPersonnel2.List(i, 22) = "OK" Then
CheckConvocation2.Value = True
Else
CheckConvocation2.Value = ""
End If
'FramePnt2
Lundi2 = LbPersonnel2.List(i, 27)
Mardi2 = LbPersonnel2.List(i, 28)
Mercredi2 = LbPersonnel2.List(i, 29)
Jeudi2 = LbPersonnel2.List(i, 30)
Vendredi2 = LbPersonnel2.List(i, 31)
ObservationsPnt2 = LbPersonnel2.List(i, 32)
'FrameObs2
TbObs2 = LbPersonnel2.List(i, 26)
End If
Next i |
Partager