Windows Forms Reinstalls Elements in Table Layout Panel

I am developing a POS system in .net with window forms as a GUI. I have a very complex single window problem in my application.

(Note: the application is compiled for the .net 4 framework and as a Windows forms project. I use a table layout to place all the elements on the form).

Below is a screenshot in Visual Studio.

Window as seen in Visual Studio 2012

Below is a screenshot of my system (Windows 8 Pro, DELL Full HD monitor).

Window as shown in my system.

Now I create executable files and DLLs and copy them to my folder system (monitor Windows 7, 1440 X 900). The application works successfully, but the result is shown below.

Application running in my dad's system

Two things have changed.

  • Start-Date End-Date ( . , , ., .)

  • .

. .

- ?

+3
1

.

Windows tablelayoutpanel .

tablelayout .

:

this.tableLayoutPanel5.Controls.Add(this.tbInvoice, 0, 0);
this.tableLayoutPanel5.Controls.Add(this.label4, 0, 0);

this.tableLayoutPanel5.Controls.Add(this.tbInvoice, 1, 0);
this.tableLayoutPanel5.Controls.Add(this.label4, 0, 0);

. , , .

+2

All Articles