Index: SQLite.Designer/Editors/TableDesignerDoc.cs ================================================================== --- SQLite.Designer/Editors/TableDesignerDoc.cs +++ SQLite.Designer/Editors/TableDesignerDoc.cs @@ -797,11 +797,11 @@ case __FRAMESHOW.FRAMESHOW_WinRestored: SetPropertyWindow(); if (_warned == false) { _warned = true; - MessageBox.Show(this, "The table designer is still in development. Please report bugs to robert@blackcastlesoft.com", "Feature Under Review", MessageBoxButtons.OK); + MessageBox.Show(this, "The table designer is still in development. Please report bugs to the sqlite-users mailing list at sqlite-users@sqlite.org", "Feature Under Review", MessageBoxButtons.OK); } break; } return VSConstants.S_OK; } Index: SQLite.Designer/Editors/ViewDesignerDoc.cs ================================================================== --- SQLite.Designer/Editors/ViewDesignerDoc.cs +++ SQLite.Designer/Editors/ViewDesignerDoc.cs @@ -566,11 +566,11 @@ _timer.Enabled = true; SetPropertyWindow(); if (_warned == false) { _warned = true; - MessageBox.Show(this, "The view designer is still in development. Please report bugs to robert@blackcastlesoft.com", "Feature Under Review", MessageBoxButtons.OK); + MessageBox.Show(this, "The view designer is still in development. Please report bugs to the sqlite-users mailing list at sqlite-users@sqlite.org", "Feature Under Review", MessageBoxButtons.OK); } break; } return VSConstants.S_OK; }