If isNumeric(Textbox3.Text) and IsNumeric(combobox3.Value and Combobox3.Text <> "0" then
Textbox5.Text = Format(Cdbl(Textbox3.text)/Cdbl(Combobox3.value), "0.00")
else
Textbox5.Text = ""
end if
diesen Code musst du ausführen lassen, wenn entweder die Textbox3 oder die Combobox3 geändert hast, dh der Code muss ins Change-Event der beiden Steuerlemente.
If isNumeric(Textbox3.Text) and IsNumeric(combobox3.Value and Combobox3.Text)<> "0" then
Textbox5.Text = Format(Cdbl(Textbox3.text)/Cdbl(Combobox3.value), "0.00")
else
Textbox5.Text = ""
end if
If isNumeric(Textbox3.Text) and IsNumeric(combobox3.Value) and Combobox3.Text<> "0" then
gruss Daniel
If isNumeric(Textbox3.Text) and IsNumeric(combobox3.Value and Combobox3.Text <> "0" then
Textbox5.Text = Format(Cdbl(Textbox3.text)/Cdbl(Combobox3.value), "0.00")
else
Textbox5.Text = ""
end if
diesen Code musst du ausführen lassen, wenn entweder die Textbox3 oder die Combobox3 geändert hast, dh der Code muss ins Change-Event der beiden Steuerlemente.
If isNumeric(Textbox3.Text) and IsNumeric(combobox3.Value and Combobox3.Text)<> "0" then
Textbox5.Text = Format(Cdbl(Textbox3.text)/Cdbl(Combobox3.value), "0.00")
else
Textbox5.Text = ""
end if
If isNumeric(Textbox3.Text) and IsNumeric(combobox3.Value) and Combobox3.Text<> "0" then
gruss Daniel