Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre questionFor i = 1 To 8 cpt1 = cpt1 & i & vbCrLf TF1 = cpt1 calc1 = calc1 & Int(((i) * 100) / 55) & vbCrLf TF11 = calc1 Next i
For i = 1 To 8 Labelcpt1 = Labelcpt1 & i & vbCrLf LabelTF1 = Labelcpt1 Labelcalc1 = Labelcalc1 & Int(((i) * 100) / 55) & vbCrLf LabelTF11 = Labelcalc1 Next i
merci jack de me venir en aide
alors que dire :
non mes sources sont à 100% du vb (.net)
mais jack à raison si c'est un label nomme le avec une syntaxe clair Ex LBLmachinBidule....
pour le reste je te poste un exemple dés que je peux.
il est pas tout sympa ce forum ? yes !!!!
For i = 1 To 8 ' Si tu dois ajouter 'i' à la suite du texte : lblCpt1.Caption = lblCpt1.Caption & CStr(i) & vbCrLf ' Si tu veux que le contenu du Label soit additionné de 'i' lblCpt1.Caption = CStr(Val(lblCpt1.Caption) + i) & vbCrLf lblTF1.Caption = lblCpt1.Caption lblCalc1.Caption = lblCalc1.Caption & CStr(Int(((i) * 100) / 55)) & vbCrLf lblTF11.Caption = lblCalc1.Caption Next i'.Caption' devient '.Text' en VB.Net - bon courage!