Hello all,
At this moment I am stuck at a point in my project on positioning a control.
This is a textbox that must be positioned 20 points under a table. The table and textbox are positioned in a tabcontrol what is positioned in a panel... logic? don't know but it looks right.
The only thing is that my project is maximised at startup and in design mode it is in the smallest position. In design mode the table is small (100 p) and the textbox positioned 20 points down. The table is in runtime appr. 500 p. high. Only at runtime it hides behind the table and I don't know how to get it positioned under the table. Tried the following as a last option nut I really dont know.
private void Logging_Click(object sender, EventArgs e)
{
// Logging is Tab - BerichtInput is Textbox - BerichtOverview is table
BerichtInput.Location = new Point(BerichtOverview.Left + 120, BerichtOverview.ClientSize.Height + 20);
}
Is there anyone who can help me with this?
Many thanks!