R
Rodrigo Ferreira
In my project i create a form in runtime when i click in a button.
The problem consists in the form size. I put this lines:
frmCalculadora.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
frmCalculadora.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
frmCalculadora.ClientSize = new System.Drawing.Size(160, 16);
But the form doesn't appear with this height. The width is correct but the height not!
I don't know what's the cause of this!
please help!
The problem consists in the form size. I put this lines:
frmCalculadora.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
frmCalculadora.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
frmCalculadora.ClientSize = new System.Drawing.Size(160, 16);
But the form doesn't appear with this height. The width is correct but the height not!
I don't know what's the cause of this!
please help!