Hi, I've a windows forms application. When i try to run this application it is increasing mem Usage continuously. How can i control this?
just my application contains only 10 to 15 database calls.
Code from comment to answer (there's no context though):
Label lbl = new Label();
lbl.Text = "my data label";
lblrss.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F,
System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point,
((byte)(0)));
lblrss.Click += new EventHandler(llrss_Click);
mytbl.Controls.Add(lbl);
this is my code plz check it
thank you, Nagu