I want add Textboxs in windows form application in user specified number [closed]

StackOverflow https://stackoverflow.com/questions/22678234

  •  22-06-2023
  •  | 
  •  

Вопрос

I want add Textboxs in windows form application in user specified number and insert values in the database also..plz help me friends

Это было полезно?

Решение

To add dynamic TextBoxes in windows forms

TextBox[] txtBoxes = new TextBox[userValue];
for (int i = 0; i < txtBoxes.Length; i++) 
{
  var txt = new TextBox();
  txtBoxes[i] = txt;
}

This will initialize the textboxes. Later you can use them to get the input.

Inserting in databases is not a single line answer. At least not before you learn how to work with databases.

So its better you go through this link

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top