| 12
 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
 
 |  
Private Sub CbxEU_Click()
 
If CbxEU.Value = True Then
CbxT.Value = False
CbxCOM.Value = False
CbxEX.Value = False
 
Tb3.Enabled = True
Tb4.Enabled = True
Tb5.Enabled = True
Tb6.Enabled = True
Tb9.Enabled = True
Tb10.Enabled = True
Tb13.Enabled = True
Tb14.Enabled = True
Tb16.Enabled = True
Tb19.Enabled = True
Tb20.Enabled = True
Tb28.Enabled = True
Tb29.Enabled = True
Tb30.Enabled = True
 
Tb3.BackColor = RGB(255, 255, 255)
Tb4.BackColor = RGB(255, 255, 255)
Tb5.BackColor = RGB(255, 255, 255)
Tb6.BackColor = RGB(255, 255, 255)
Tb9.BackColor = RGB(255, 255, 255)
Tb10.BackColor = RGB(255, 255, 255)
Tb13.BackColor = RGB(255, 255, 255)
Tb14.BackColor = RGB(255, 255, 255)
Tb16.BackColor = RGB(255, 255, 255)
Tb19.BackColor = RGB(255, 255, 255)
Tb20.BackColor = RGB(255, 255, 255)
Tb28.BackColor = RGB(255, 255, 255)
Tb29.BackColor = RGB(255, 255, 255)
Tb30.BackColor = RGB(255, 255, 255)
 
Else
 
Tb3.Enabled = False
Tb4.Enabled = False
Tb5.Enabled = False
Tb6.Enabled = False
Tb9.Enabled = False
Tb10.Enabled = False
Tb13.Enabled = False
Tb14.Enabled = False
Tb16.Enabled = False
Tb19.Enabled = False
Tb20.Enabled = False
Tb28.Enabled = False
Tb29.Enabled = False
Tb30.Enabled = False
 
Tb3.BackColor = RGB(224, 224, 224)
Tb4.BackColor = RGB(224, 224, 224)
Tb5.BackColor = RGB(224, 224, 224)
Tb6.BackColor = RGB(224, 224, 224)
Tb9.BackColor = RGB(224, 224, 224)
Tb10.BackColor = RGB(224, 224, 224)
Tb13.BackColor = RGB(224, 224, 224)
Tb14.BackColor = RGB(224, 224, 224)
Tb16.BackColor = RGB(224, 224, 224)
Tb19.BackColor = RGB(224, 224, 224)
Tb20.BackColor = RGB(224, 224, 224)
Tb28.BackColor = RGB(224, 224, 224)
Tb29.BackColor = RGB(224, 224, 224)
Tb30.BackColor = RGB(224, 224, 224)
 
End If
 
End sub | 
Partager