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

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

  •  22-06-2023
  •  | 
  •  

Domanda

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

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top