diff --git a/.vs/Gästeliste/v14/.suo b/.vs/Gästeliste/v14/.suo index ee26179..c5b70e1 100644 Binary files a/.vs/Gästeliste/v14/.suo and b/.vs/Gästeliste/v14/.suo differ diff --git a/Gästeliste/Gästeliste.vbproj b/Gästeliste/Gästeliste.vbproj index 53455e4..66e2191 100644 --- a/Gästeliste/Gästeliste.vbproj +++ b/Gästeliste/Gästeliste.vbproj @@ -17,13 +17,13 @@ Z:\Gaesteliste\ true Web - true + false Foreground 7 Days false false - true + false http://tools.dominicreich.com/Gaesteliste/ http://tools.dominicreich.com/Gaesteliste/ http://tmsn.at/%3ftools&gaesteliste @@ -32,7 +32,7 @@ Dominic Reich 1.0.0.0 false - 18 + 20 1.0.1.%2a true true diff --git a/Gästeliste/frmMain.vb b/Gästeliste/frmMain.vb index aaf76be..1e13dbb 100644 --- a/Gästeliste/frmMain.vb +++ b/Gästeliste/frmMain.vb @@ -142,7 +142,9 @@ Public Class frmMain End With Try - dt.Rows.Add(dr) + If oForm.DialogResult = vbOK Then + dt.Rows.Add(dr) + End If Catch ex As Exception MsgBox("Gast konnte nicht hinzugefügt werden." & vbCrLf & ex.Message) End Try @@ -210,8 +212,8 @@ Public Class frmMain End Sub Private Sub statusVersionLabel_Click(sender As Object, e As EventArgs) Handles statusVersionLabel.Click - If statusVersionLabel.Tag = "update" Then - UpdateToolStripMenuItem_Click(statusVersionLabel, Nothing) - End If + 'If statusVersionLabel.Tag = "update" Then + UpdateToolStripMenuItem_Click(sender, Nothing) + 'End If End Sub End Class