Bonjour à tous,
Je cherche a effectuer l'action suivante par double clic :
je n'arrive pas a mettre les éléments les un derrière les autres en suivant l'ordre
suivant :
Date, type de vol ( choix entre entrainement ou prorogation), le contenu de la combobox6 ( ex : maniabilité), le FI (combox1 ex PSN), le type avion (ex c 172 g100 dans combobox 2, les vent, direction et vitesse, respectivement dans textbox TextBoxWindDir et TextBoxWindSpeed
J'ai essayé ce code mais je ne rapatrie que la date .
je sollicite votre aide pour correction en vous remerciant par avance.
Ph.
Private Sub Txtvol2_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
With TxtDate
.SelStart = 0
.SelLength = .TextLength
.Copy
End With
With ComboBox6
.SelStart = 1
.SelLength = .TextLength
.Copy
End With
With ComboBox1
.SelStart = 2
.SelLength = .TextLength
.Copy
End With
With ComboBox2
.SelStart = 3
.SelLength = .TextLength
.Copy
End With
With TextBoxWindDir
.SelStart = 4
.SelLength = .TextLength
.Copy
End With
Txtvol2.Paste
End Sub