27.06.2015, 14:49
Hallo,
ich arbeite gerade an einer Userform, mit welcher eine Reihe von Daten, wie der Name die Stadt email adress und ähnlich abgefragt werden sollen. Es sind sehr viele Daten und ich habe es mir so vorgestellt, dass ich 3 command Buttons habe. Zuerst soll ein Suchkriterium festgelegt werden, so z B das Geburtsdatum, nachdem dieses eingegeben wurde wird auf OK (Command Button) gedrückt. Danach werden alle weiteren Informationen in die TextBoxen gefüllt und ich kann eine Information, wie das Haustier, ändern und speichern (Command Button). So, danach soll die ganze Userform automatisch geschlossen werden. Wie macht man das?
Ich habe hier schonmal einen Entwurf, jedoch klappts nicht ganz. Vielleicht kann es sich mal jemand ansehen und mir sagen was falsch ist. Ich wäre sehr dankbar.
Private Sub ArrowUp_Click()
'Pfeil weiter
ZeileAktuell = ZeileAktuell + 1
With Worksheets("Tabelle2")
If ZeileAktuell <= .Cells(.Rows.Count, 1).End(xlUp).Row Then
Call Data
Else
MsgBox "Last Data is shown", vbQuestion + vbOKOnly, "Data next"
End If
End With
End Sub
Private Sub UserForm_Click()
Option Explicit
Private ZeileAktuell As Long
Private Sub Cancel_Click()
Unload Me
End Sub
Private Sub Data()
With Worksheets("Tabelle2")
Me.TextBox1.Value = .Cells(ZeileAktuell, 1).Value
Me.TextBox2.Value = .Cells(ZeileAktuell, 2).Value
Me.TextBox3.Value = .Cells(ZeileAktuell, 3).Value
Me.TextBox4.Value = .Cells(ZeileAktuell, 4).Value
Me.TextBox5.Value = .Cells(ZeileAktuell, 5).Value
Me.TextBox6.Value = .Cells(ZeileAktuell, 6).Value
Me.TextBox7.Value = .Cells(ZeileAktuell, 7).Value
Me.TextBox8.Value = .Cells(ZeileAktuell, 8).Value
Me.TextBox9.Value = .Cells(ZeileAktuell, 9).Value
Me.TextBox10.Value = .Cells(ZeileAktuell, 10).Value
End With
End Sub
Private Sub Correct_Click()
'Daten korrigieren
If MsgBox("Data change?", vbQuestion, "Data correct?") = vbYes Then
With Worksheets("Tabelle2")
.Cells(ZeileAktuell, 1).Value = Me.TextBox1.Value
.Cells(ZeileAktuell, 2).Value = Me.TextBox2.Value
.Cells(ZeileAktuell, 3).Value = Me.TextBox3.Value
' .Cells(ZeileAktuell, 4).Value = Me.TextBox4.Value
.Cells(ZeileAktuell, 5).Value = Me.TextBox5.Value
.Cells(ZeileAktuell, 6).Value = Me.TextBox6.Value
.Cells(ZeileAktuell, 7).Value = Me.TextBox7.Value
.Cells(ZeileAktuell, 8).Value = Me.TextBox8.Value
End With
' MsgBox ("Die Daten wurden ge?ndert")
End If
End Sub
Private Sub ArrowDown_Click()
'Pfeil zur¨¹ck
ZeileAktuell = ZeileAktuell - 1
If ZeileAktuell >= 2 Then
Call Data
Else
MsgBox "1. Data shown", vbQuestion + vbOKOnly, "Data back"
End If
End Sub
Private Sub UserForm_Initialize()
Worksheets("Daten").Activate
ZeileAktuell = 2
Call Data
End Sub
ich arbeite gerade an einer Userform, mit welcher eine Reihe von Daten, wie der Name die Stadt email adress und ähnlich abgefragt werden sollen. Es sind sehr viele Daten und ich habe es mir so vorgestellt, dass ich 3 command Buttons habe. Zuerst soll ein Suchkriterium festgelegt werden, so z B das Geburtsdatum, nachdem dieses eingegeben wurde wird auf OK (Command Button) gedrückt. Danach werden alle weiteren Informationen in die TextBoxen gefüllt und ich kann eine Information, wie das Haustier, ändern und speichern (Command Button). So, danach soll die ganze Userform automatisch geschlossen werden. Wie macht man das?
Ich habe hier schonmal einen Entwurf, jedoch klappts nicht ganz. Vielleicht kann es sich mal jemand ansehen und mir sagen was falsch ist. Ich wäre sehr dankbar.
Private Sub ArrowUp_Click()
'Pfeil weiter
ZeileAktuell = ZeileAktuell + 1
With Worksheets("Tabelle2")
If ZeileAktuell <= .Cells(.Rows.Count, 1).End(xlUp).Row Then
Call Data
Else
MsgBox "Last Data is shown", vbQuestion + vbOKOnly, "Data next"
End If
End With
End Sub
Private Sub UserForm_Click()
Option Explicit
Private ZeileAktuell As Long
Private Sub Cancel_Click()
Unload Me
End Sub
Private Sub Data()
With Worksheets("Tabelle2")
Me.TextBox1.Value = .Cells(ZeileAktuell, 1).Value
Me.TextBox2.Value = .Cells(ZeileAktuell, 2).Value
Me.TextBox3.Value = .Cells(ZeileAktuell, 3).Value
Me.TextBox4.Value = .Cells(ZeileAktuell, 4).Value
Me.TextBox5.Value = .Cells(ZeileAktuell, 5).Value
Me.TextBox6.Value = .Cells(ZeileAktuell, 6).Value
Me.TextBox7.Value = .Cells(ZeileAktuell, 7).Value
Me.TextBox8.Value = .Cells(ZeileAktuell, 8).Value
Me.TextBox9.Value = .Cells(ZeileAktuell, 9).Value
Me.TextBox10.Value = .Cells(ZeileAktuell, 10).Value
End With
End Sub
Private Sub Correct_Click()
'Daten korrigieren
If MsgBox("Data change?", vbQuestion, "Data correct?") = vbYes Then
With Worksheets("Tabelle2")
.Cells(ZeileAktuell, 1).Value = Me.TextBox1.Value
.Cells(ZeileAktuell, 2).Value = Me.TextBox2.Value
.Cells(ZeileAktuell, 3).Value = Me.TextBox3.Value
' .Cells(ZeileAktuell, 4).Value = Me.TextBox4.Value
.Cells(ZeileAktuell, 5).Value = Me.TextBox5.Value
.Cells(ZeileAktuell, 6).Value = Me.TextBox6.Value
.Cells(ZeileAktuell, 7).Value = Me.TextBox7.Value
.Cells(ZeileAktuell, 8).Value = Me.TextBox8.Value
End With
' MsgBox ("Die Daten wurden ge?ndert")
End If
End Sub
Private Sub ArrowDown_Click()
'Pfeil zur¨¹ck
ZeileAktuell = ZeileAktuell - 1
If ZeileAktuell >= 2 Then
Call Data
Else
MsgBox "1. Data shown", vbQuestion + vbOKOnly, "Data back"
End If
End Sub
Private Sub UserForm_Initialize()
Worksheets("Daten").Activate
ZeileAktuell = 2
Call Data
End Sub