Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Change support email address in the design-time components. Pursuant to [17405b6e06]. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9c43b0b95cad1b65e3998c2b5fed3892 |
User & Date: | mistachkin 2014-11-07 22:00:43 |
References
2014-11-07
| ||
22:01 | • Closed ticket [17405b6e06]: VisualStudio designer shows robert@blackcastlesoft.com each time plus 5 other changes artifact: 686c2a09ff user: mistachkin | |
Context
2014-11-07
| ||
23:48 | Defer disposing of the connection created by the static SQLiteCommand.Execute method when a data reader is returned. Fix for [daeaf3150a]. check-in: ad79758d0c user: mistachkin tags: trunk | |
22:00 | Change support email address in the design-time components. Pursuant to [17405b6e06]. check-in: 9c43b0b95c user: mistachkin tags: trunk | |
2014-10-30
| ||
01:12 | Update SQLite core library to the 3.8.7.1 release. check-in: 5074b140f0 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Designer/Editors/TableDesignerDoc.cs.
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 |
{
case __FRAMESHOW.FRAMESHOW_WinShown:
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);
}
break;
}
return VSConstants.S_OK;
}
int IVsWindowFrameNotify.OnSize()
|
| |
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 |
{
case __FRAMESHOW.FRAMESHOW_WinShown:
case __FRAMESHOW.FRAMESHOW_WinRestored:
SetPropertyWindow();
if (_warned == false)
{
_warned = true;
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;
}
int IVsWindowFrameNotify.OnSize()
|
Changes to SQLite.Designer/Editors/ViewDesignerDoc.cs.
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 |
case __FRAMESHOW.FRAMESHOW_WinShown:
case __FRAMESHOW.FRAMESHOW_WinRestored:
_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);
}
break;
}
return VSConstants.S_OK;
}
int IVsWindowFrameNotify.OnSize()
|
| |
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 |
case __FRAMESHOW.FRAMESHOW_WinShown:
case __FRAMESHOW.FRAMESHOW_WinRestored:
_timer.Enabled = true;
SetPropertyWindow();
if (_warned == false)
{
_warned = true;
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;
}
int IVsWindowFrameNotify.OnSize()
|