You are not logged in.
Dear visitor, welcome to Aqua Computer Forum. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
TrOuble
God





Quoted
Private Sub Command1_Click()
Text3 = Val(gewicht) / Val((groeße) * (groeße))
If Val(rat) > 15 Then Text4 = "Dies ist ein Normaler Wert."
If Val(rat) < 30 Then Text4 = "Dies ist ein Normaler Wert."
If Val(rat) < 15 Then Text4 = "Dieser Wert ist zu niedrig - sie sollten zum Arzt."
If Val(rat) > 30 Then Text4 = "Dieser Wert ist zu hoch - sie sollten zum Arzt."
End Sub
Quoted from "TrOuble"
Private Sub Command1_Click()
Text3 = Val(gewicht) / Val((groeße) * (groeße))
If Val(rat) > 15 Then Text4 = "Dies ist ein Normaler Wert."
If Val(rat) < 30 Then Text4 = "Dies ist ein Normaler Wert."
If Val(rat) < 15 Then Text4 = "Dieser Wert ist zu niedrig - sie sollten zum Arzt."
If Val(rat) > 30 Then Text4 = "Dieser Wert ist zu hoch - sie sollten zum Arzt."
End Sub
Quoted
Private Sub Command1_Click()
Text3 = Val(gewicht) / (groeße * groeße)
If Val(rat) > 15 Then Text4 = "Dies ist ein Normaler Wert."
If Val(rat) < 30 Then Text4 = "Dies ist ein Normaler Wert."
If Val(rat) < 15 Then Text4 = "Dieser Wert ist zu niedrig - sie sollten zum Arzt."
If Val(rat) > 30 Then Text4 = "Dieser Wert ist zu hoch - sie sollten zum Arzt."
End Sub
Quoted
Private Sub Command1_Click()
Text3 = Val(gewicht) / (groeße * groeße)
If text3 > 15 Then Text4 = "Dies ist ein Normaler Wert."
If text3 < 30 Then Text4 = "Dies ist ein Normaler Wert."
If text3 < 15 Then Text4 = "Dieser Wert ist zu niedrig - sie sollten zum Arzt."
If text3 > 30 Then Text4 = "Dieser Wert ist zu hoch - sie sollten zum Arzt."
End Sub
Neues moddingtech.de Portal online! |
|
Source code |
1 |
Text3 = Val(gewicht) / (groeße * groeße) |
).|
|
Source code |
1 |
Text3 = erg |


)|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 |
Private Sub cmdCalcBMI_Click() Dim dBMI As Double dBMI = txtWeight.Text / (txtSize.Text * txtSize.Text) If dBMI > 30 Then txtstatus.Text = "Dieser Wert ist zu hoch - Sie sollten zum Arzt." ElseIf dBMI > 15 Then txtstatus.Text = "Dies ist ein Normaler Wert." Else txtstatus.Text = "Dieser Wert ist zu niedrig - Sie sollten zum Arzt." End If End Sub |
-