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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
| Private Sub CheckBox1_Click() 'probleme resolu
End Sub
Private Sub ComboBox0_Enter() 'reception
X = 1
ComboBox0.Clear
ComboBox2.Clear
ComboBox3.Clear
ComboBox4.Clear
ComboBox5.Clear
ComboBox6.Clear
ComboBox7.Clear
ComboBox8.Clear
ComboBox9.Clear
ComboBox10.Clear
For Each cell In Worksheets("Feuil2").Range("A1:A6")
Me.ComboBox0 = cell
If Me.ComboBox0.ListIndex = -1 Then
Me.ComboBox0.AddItem cell
End If
Next cell
End Sub
Private Sub ComboBox10_Change() 'solution proposee
End Sub
Private Sub ComboBox2_AfterUpdate() 'nom
Worksheets("Feuil1").Activate
Cells(2, 4).Select
X = 2
Me.ComboBox3.Clear
Do While (Cells(X, 4).Value) <> ""
If ComboBox3.Value = "" Then
If (Cells(X, 4).Value) = ComboBox2.Value Then
ActiveCell.Offset(0, 1).Activate
Me.ComboBox3.AddItem ActiveCell.Value
ActiveCell.Offset(0, -1).Activate
End If
X = X + 1
ActiveCell.Offset(1, 0).Activate
Else
If (Cells(X, 5).Value) = ComboBox3.Value And (Cells(X, 4).Value) = ComboBox2.Value Then
ActiveCell.Offset(0, 2).Activate
Me.ComboBox5.AddItem ActiveCell.Value
ActiveCell.Offset(0, -3).Activate
Me.ComboBox2.AddItem ActiveCell.Value
ActiveCell.Offset(0, 1).Activate
End If
X = X + 1
ActiveCell.Offset(1, 0).Activate
End If
Loop
End Sub
Private Sub ComboBox3_AfterUpdate() 'prenom
Worksheets("Feuil1").Activate
Cells(2, 5).Select
X = 2
ComboBox5.Clear
Do While (Cells(X, 5).Value) <> ""
If ComboBox2.Value = "" Then
If (Cells(X, 5).Value) = ComboBox3.Value Then
ActiveCell.Offset(0, 2).Activate
Me.ComboBox5.AddItem ActiveCell.Value
ActiveCell.Offset(0, -3).Activate
Me.ComboBox2.AddItem ActiveCell.Value
ActiveCell.Offset(0, 1).Activate
End If
X = X + 1
ActiveCell.Offset(1, 0).Activate
Else
If (Cells(X, 5).Value) = ComboBox3.Value And (Cells(X, 4).Value) = ComboBox2.Value Then
ActiveCell.Offset(0, 2).Activate
Me.ComboBox5.AddItem ActiveCell.Value
ActiveCell.Offset(0, -3).Activate
Me.ComboBox2.AddItem ActiveCell.Value
ActiveCell.Offset(0, 1).Activate
End If
X = X + 1
ActiveCell.Offset(1, 0).Activate
End If
Loop
End Sub
Private Sub ComboBox4_Enter() 'agence
X = 1
ComboBox4.Clear
For Each cell In Worksheets("Feuil3").Range("B1:B38")
Me.ComboBox4 = cell
If Me.ComboBox4.ListIndex = -1 Then
Me.ComboBox4.AddItem cell
End If
Next cell
End Sub
Private Sub ComboBox5_Change() 'telephone
End Sub
Private Sub ComboBox6_Enter() 'type chariot
End Sub
Private Sub ComboBox7_Change() 'n° serie
ComboBox6.Value = Mid(ComboBox7.Value, 4, 3)
End Sub
Private Sub ComboBox8_Change() 'code panne
End Sub
Private Sub ComboBox9_Change() 'probleme
End Sub
Private Sub CommandButton1_Click() 'recherche
If UserForm1.ComboBox1.Value <> "" Then Nom = UserForm1.ComboBox1.List(UserForm1.ComboBox1.ListIndex)
If UserForm1.ComboBox2.Value <> "" Then Prenom = UserForm1.ComboBox2.List(UserForm1.ComboBox2.ListIndex)
If UserForm1.ComboBox3.Value <> "" Then Tel = UserForm1.ComboBox3.List(UserForm1.ComboBox3.ListIndex)
Selection.AutoFilter Field:=1, Criteria1:="=*" & Nom & "*", Operator:=xlAnd
Selection.AutoFilter Field:=2, Criteria1:="=*" & Prenom & "*", Operator:=xlAnd
Selection.AutoFilter Field:=3, Criteria1:="=*" & Tel & "*", Operator:=xlAnd
End Sub
Private Sub CommandButton4_Click() 'save
X = 1
Do While (Cells(X, 2).Value) <> ""
X = X + 1
Loop
Cells(X, 1) = UserForm1.ComboBox0.Value
Cells(X, 2) = UserForm1.DateLabel
Cells(X, 3) = UserForm1.HeureLabel
Cells(X, 4) = UserForm1.ComboBox2.Value
Cells(X, 5) = UserForm1.ComboBox3.Value
Cells(X, 6) = UserForm1.ComboBox4.Value
Cells(X, 7) = UserForm1.ComboBox5.Value
Cells(X, 8) = UserForm1.ComboBox6.Value
Cells(X, 9) = UserForm1.ComboBox7.Value
Cells(X, 10) = UserForm1.ComboBox8.Value
Cells(X, 11) = UserForm1.ComboBox9.Value
Cells(X, 12) = UserForm1.ComboBox10.Value
Cells(X, 13) = UserForm1.CheckBox1.Value
If UserForm1.CheckBox1.Value = Enabled Then
Cells(X, 13) = "Résolu" 'Problème résolu/non résolu, s'affiche sur le fichier exel lors de la sauvegarde du formulaire
With Cells(X, 13).Interior
.ColorIndex = 4
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With
Else
Cells(X, 13) = "Non Résolu"
With Cells(X, 13).Interior
.ColorIndex = 6
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With
End If
UserForm1.ComboBox0.Value = ""
UserForm1.ComboBox0.Clear
UserForm1.ComboBox2.Value = ""
UserForm1.ComboBox2.Clear
UserForm1.ComboBox3.Value = ""
UserForm1.ComboBox3.Clear
UserForm1.ComboBox4.Value = ""
UserForm1.ComboBox4.Clear
UserForm1.ComboBox5.Value = ""
UserForm1.ComboBox5.Clear
UserForm1.ComboBox6.Value = ""
UserForm1.ComboBox6.Clear
UserForm1.ComboBox7.Value = ""
UserForm1.ComboBox7.Clear
UserForm1.ComboBox8.Value = ""
UserForm1.ComboBox8.Clear
UserForm1.ComboBox9.Value = ""
UserForm1.ComboBox9.Clear
UserForm1.ComboBox10.Value = ""
UserForm1.ComboBox10.Clear
Call chargeNom
End Sub
Function chargeNom()
X = 2
Do While (Feuil2.Cells(X, 1).Value) <> ""
UserForm1.ComboBox0.AddItem (Feuil2.Cells(X, 1).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 4).Value) <> ""
UserForm1.ComboBox2.AddItem (Cells(X, 4).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 5).Value) <> ""
UserForm1.ComboBox3.AddItem (Cells(X, 5).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 6).Value) <> ""
UserForm1.ComboBox4.AddItem (Cells(X, 6).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 7).Value) <> ""
UserForm1.ComboBox5.AddItem (Cells(X, 7).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 8).Value) <> ""
UserForm1.ComboBox5.AddItem (Cells(X, 8).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 9).Value) <> ""
UserForm1.ComboBox6.AddItem (Cells(X, 9).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 10).Value) <> ""
UserForm1.ComboBox7.AddItem (Cells(X, 10).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 11).Value) <> ""
UserForm1.ComboBox8.AddItem (Cells(X, 11).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 11).Value) <> ""
UserForm1.ComboBox9.AddItem (Cells(X, 11).Value)
X = X + 1
Loop
X = 2
Do While (Cells(X, 12).Value) <> ""
UserForm1.ComboBox10.AddItem (Cells(X, 12).Value)
X = X + 1
Loop
End Function
Private Sub DateLabel_Click()
End Sub
Private Sub HeureLabel_Click()
End Sub
Private Sub Label12_Click()
End Sub
Private Sub TextBox1_Change()
End Sub
Private Sub UserForm_Initialize()
'Dim cell As Range
X = 2
ComboBox0.Clear
ComboBox2.Clear
ComboBox3.Clear
ComboBox4.Clear
ComboBox5.Clear
ComboBox6.Clear
ComboBox7.Clear
ComboBox8.Clear
ComboBox9.Clear
ComboBox10.Clear
Do While (Cells(X, 1).Value) <> ""
X = X + 1
Loop
' For Each cell In Worksheets("Feuil1").Range("E2:E" & X)
' Me.ComboBox3 = cell
' If Me.ComboBox3.ListIndex = -1 Then
' Me.ComboBox3.AddItem cell
' End If
' Next cell
DateLabel = Date
HeureLabel = Time
X = 1
Do While (Cells(X, 2).Value) <> ""
X = X + 1
Loop
TextBox1.Value = X
End Sub |
Partager