26.04.2019, 07:56
Hallo,
ich habe folgenden Code.
jetzt muss ich das alle Textboxen (außer TextBox1-3) bei der übergabe in die Tabelle als Zahl übergeben werden. wie bekomme ich das hin?
MfG
Sven
ich habe folgenden Code.
Code:
Private Sub Userform_Initialize()
MsgBox "Es müssen immer kleine Teige eingegeben werden"
TextBox3 = Format$(Date, "dd.mm.yyyy")
End Sub
'Button: Übernehmen
Private Sub CommandButton1_Click()
Dim lz1 As Long 'LastZell in Tabelle1
On Error GoTo Fehler
lz1 = Cells(Rows.Count, 1).End(xlUp).Row + 1
'Parameter
Cells(lz1, 1) = TextBox1.Text
Cells(lz1, 2) = TextBox2.Text
Cells(lz1, 3) = TextBox3.Text
Cells(lz1, 4) = TextBoxTT.Text
Cells(lz1, 5) = TextBoxTRW.Text
Cells(lz1, 6) = TextBoxTRS.Text
Cells(lz1, 7) = TextBoxRD.Text
Cells(lz1, 8) = TextBoxRE.Text
Cells(lz1, 9) = TextBoxKZL.Text
Cells(lz1, 10) = TextBoxKZS.Text
'Maische
Cells(lz1, 11) = TextBoxMAISCHEW.Text
Cells(lz1, 12) = TextBoxMAISCHERB.Text
'Quellstück
Cells(lz1, 13) = ComboBoxQS1.Text
Cells(lz1, 15) = TextBoxQS1.Text
Cells(lz1, 16) = ComboBoxQS2.Text
Cells(lz1, 18) = TextBoxQS2.Text
Cells(lz1, 19) = ComboBoxQS3.Text
Cells(lz1, 21) = TextBoxQS3.Text
Cells(lz1, 22) = TextBoxTE.Text
'Bestreuung
Cells(lz1, 23) = ComboBox_Bestreuung1.Text
Cells(lz1, 25) = TextBoxBESTREUUNG1.Text
Cells(lz1, 26) = ComboBox_Bestreuung2.Text
Cells(lz1, 28) = TextBoxBESTREUUNG2.Text
Cells(lz1, 29) = ComboBox_Bestreuung3.Text
Cells(lz1, 31) = TextBoxBESTREUUNG3.Text
Cells(lz1, 32) = ComboBox_Bestreuung4.Text
Cells(lz1, 34) = TextBoxBESTREUUNG4.Text
'Rohstoffe
Cells(lz1, 35) = ComboBoxR1.Text
Cells(lz1, 37) = TextBoxR1.Text
Cells(lz1, 38) = ComboBoxR2.Text
Cells(lz1, 40) = TextBoxR2.Text
Cells(lz1, 41) = ComboBoxR3.Text
Cells(lz1, 43) = TextBoxR3.Text
Cells(lz1, 44) = ComboBoxR4.Text
Cells(lz1, 46) = TextBoxR4.Text
Cells(lz1, 47) = ComboBoxR5.Text
Cells(lz1, 49) = TextBoxR5.Text
Cells(lz1, 50) = ComboBoxR6.Text
Cells(lz1, 52) = TextBoxR6.Text
Cells(lz1, 53) = ComboBoxR7.Text
Cells(lz1, 55) = TextBoxR7.Text
Cells(lz1, 56) = ComboBoxR8.Text
Cells(lz1, 58) = TextBoxR8.Text
Cells(lz1, 59) = ComboBoxR9.Text
Cells(lz1, 61) = TextBoxR9.Text
Cells(lz1, 62) = ComboBoxR10.Text
Cells(lz1, 64) = TextBoxR10.Text
Cells(lz1, 65) = ComboBoxR11.Text
Cells(lz1, 67) = TextBoxR11.Text
Cells(lz1, 68) = ComboBoxR12.Text
Cells(lz1, 70) = TextBoxR12.Text
Cells(lz1, 71) = ComboBoxR13.Text
Cells(lz1, 73) = TextBoxR13.Text
Cells(lz1, 74) = ComboBoxR14.Text
Cells(lz1, 76) = TextBoxR14.Text
Exit Sub
Fehler: MsgBox "Eingabe Fehler aufgetreten"
End Sub
'Button: Abbrechen
Private Sub CommandButton2_Click()
Unload Me
End Sub
MfG
Sven