[Solved] C# Windows Form – access code [closed]


You can access the Control’s objects attributes by it’s name.

For example:

NumericUpDown1 <- It’s the name of your Control

In your C# code you can access all of it’s attribtes and methods by puttin a period after it’s name:

NumericUpDown1.Maximun = 100;
NumericUpDown1.Width = 250;
NumericUpDown1.Height = 10;

etc. You can serach it by “Control Properties” in google. Luck and effort! 😛 Remember to try and search a bit before asking. Don’t wait for others to make your job. Luck! ^.^

4

solved C# Windows Form – access code [closed]