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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| Sub Charg_ListeGene()
With InterfaceUser.ListView_Machines.ColumnHeaders
.Clear
.Add , , "S/N", 60
.Add , , "OF", 60
.Add , , "ID", 0
End With
InterfaceUser.ComboBox_Bati.ColumnWidths = "60;0"
InterfaceUser.ComboBox_Etat.ColumnWidths = "72;0"
InterfaceUser.ComboBox_InfServ.ColumnWidths = "90;0"
With InterfaceUser.ListView_OP.ColumnHeaders
.Clear
.Add , , "ID", 0
.Add , , "OP", 60
.Add , , "Désignation", 250
.Add , , "Statut", 60
.Add , , "Temps passé", 48
.Add , , "Ecart", 36
End With
With InterfaceUser.ListView_Aleas.ColumnHeaders
.Clear
.Add , , "ID", 0
.Add , , "Auteur", 66
.Add , , "Désignation", 253
.Add , , "Nbr de quart", 72
.Add , , "OP Impacté", 36
.Add , , "OF de pointage", 70
End With
With InterfaceUser.ListView_Serv.ColumnHeaders
.Clear
.Add , , "ID", 0
.Add , , "P/N", 100
.Add , , "Désignation", 140
.Add , , "Demande GP", 50
.Add , , "Acteur", 100
.Add , , "Délai", 90
.Add , , "Statut", 0 'caché
End With
With InterfaceUser.ListView_Inf.ColumnHeaders
.Clear
.Add , , "ID", 0
.Add , , "Demandeur", 66
.Add , , "Service", 72
.Add , , "Acteur", 100
.Add , , "Désignation", 253
.Add , , "Statut", 0 'caché
End With
With USF_Assign.ListView_Ass.ColumnHeaders
.Clear
.Add , , "ID", 0
.Add , , "S/N", 100
.Add , , "OF", 100
End With
End Sub |