Operation de devision ne fonctionne ps (vb 6.0)
Fermé
aloulou007
Messages postés
15
Date d'inscription
samedi 30 mars 2013
Statut
Membre
Dernière intervention
6 avril 2013
-
30 mars 2013 à 17:42
Yoda - 31 mars 2013 à 23:13
Yoda - 31 mars 2013 à 23:13
A voir également:
- Operation de devision ne fonctionne ps (vb 6.0)
- Vb - Télécharger - Langages
- Vb cable - Télécharger - Audio & Musique
- Impossible de terminer l'opération car le fichier contient un virus ✓ - Forum Windows 10
- Bouton ps manette ps4 ne fonctionne plus - Forum PS4
- L'opération demandée nécessite une élévation ✓ - Forum LibreOffice / OpenOffice
5 réponses
Bonjour,
A+
If Option4.Value = True Then If (CInt(Text2.Text) = 0 Or CInt(Text3.Text) = 0) Or (CInt(Text2.Text) = 0 And CInt(Text3.Text) = 0) Then MsgBox " chifre 1 et 2 doivent etre diff de 0" Else Label4 = CInt(Text2.Text) \ CInt(Text3.Text) End If End If
A+
aloulou007
Messages postés
15
Date d'inscription
samedi 30 mars 2013
Statut
Membre
Dernière intervention
6 avril 2013
30 mars 2013 à 18:42
30 mars 2013 à 18:42
mercii bcppppppp :D
aloulou007
Messages postés
15
Date d'inscription
samedi 30 mars 2013
Statut
Membre
Dernière intervention
6 avril 2013
31 mars 2013 à 13:17
31 mars 2013 à 13:17
g 3 text box en cliquant sur un bouton le minimum saffiche dns un label c quoi le probleme?
Sub minim(x As Integer, y As Integer, min As Integer)
If x < min Then
x = min
End If
If z < min Then
z = min
End If
Label8.Caption = min
End Sub
Private Sub comparer_Click()
Dim nb1 As Integer
Dim nb2 As Integer
Dim nb3 As Integer
nb1 = CInt(Text1.Text)
nb2 = CInt(Text2.Text)
nb3 = CInt(Text3.Text)
Call minim(comparer(nb1, nb2, nb3))
End Sub
Sub minim(x As Integer, y As Integer, min As Integer)
If x < min Then
x = min
End If
If z < min Then
z = min
End If
Label8.Caption = min
End Sub
Private Sub comparer_Click()
Dim nb1 As Integer
Dim nb2 As Integer
Dim nb3 As Integer
nb1 = CInt(Text1.Text)
nb2 = CInt(Text2.Text)
nb3 = CInt(Text3.Text)
Call minim(comparer(nb1, nb2, nb3))
End Sub
lermite222
Messages postés
8724
Date d'inscription
dimanche 8 avril 2007
Statut
Contributeur
Dernière intervention
22 janvier 2020
1 190
31 mars 2013 à 16:53
31 mars 2013 à 16:53
Bonjour,
Une autre façon de faire une calculatrice Voir cette démo
Une approche comme toi, avec deux textbox Projet calculateur
A+
Une autre façon de faire une calculatrice Voir cette démo
Une approche comme toi, avec deux textbox Projet calculateur
A+
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
aloulou007
Messages postés
15
Date d'inscription
samedi 30 mars 2013
Statut
Membre
Dernière intervention
6 avril 2013
31 mars 2013 à 18:37
31 mars 2013 à 18:37
g 3 text box en cliquant sur un bouton le minimum saffiche dns un label c quoi le probleme? !!!!!!!!!!!!!!!!!!!!!!!!
Sub minim(x As Integer, y As Integer, min As Integer)
If x < min Then
x = min
End If
If z < min Then
z = min
End If
Label8.Caption = min
End Sub
Private Sub comparer_Click()
Dim nb1 As Integer
Dim nb2 As Integer
Dim nb3 As Integer
nb1 = CInt(Text1.Text)
nb2 = CInt(Text2.Text)
nb3 = CInt(Text3.Text)
Call minim(comparer(nb1, nb2, nb3))
End Sub
Sub minim(x As Integer, y As Integer, min As Integer)
If x < min Then
x = min
End If
If z < min Then
z = min
End If
Label8.Caption = min
End Sub
Private Sub comparer_Click()
Dim nb1 As Integer
Dim nb2 As Integer
Dim nb3 As Integer
nb1 = CInt(Text1.Text)
nb2 = CInt(Text2.Text)
nb3 = CInt(Text3.Text)
Call minim(comparer(nb1, nb2, nb3))
End Sub
Bonjour,
Il y a plusieurs problèmes:
1/ la Sub minim() a trois paramètres, x , y et min
et dans le corps de la sub on voit x, z et min
2/ le Call est incorrect, il faut écrire Call minim(nb1,nb2,nb3)
3/ ton raisonnement pour trouver le minimun de trois nombre est faux, je te laisse réfléchir un peu.
A+
Il y a plusieurs problèmes:
1/ la Sub minim() a trois paramètres, x , y et min
et dans le corps de la sub on voit x, z et min
2/ le Call est incorrect, il faut écrire Call minim(nb1,nb2,nb3)
3/ ton raisonnement pour trouver le minimun de trois nombre est faux, je te laisse réfléchir un peu.
A+