Posted 31 May 2018, 4:13 am EST
Hi,
if I open and close a very simple form with only a truedbgrid, in the windows 10 process explorer, the column USER and GDI continue to increase until they arrive to 10000 and the application crash.
Currently I’m using the 4.0.20132.61317 grid version but I have the same problem in the last version (2018/1).
Step to reproduce:
- new solution, fw 4.0, c#
- add a form (form1) with a button
- add a form (form2) with truedbgrid and a button
form1:
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e) { var Frm = new Form2(); Frm.ShowDialog(this); Frm.Dispose(); Frm = null; }
form2:
public Form2() { InitializeComponent(); this.Top = 100; this.Left = 100; } private void button1_Click(object sender, EventArgs e) { this.Close(); }