ici est mon codePas en mesure de compter le nombre de ligne dans richtextbox
private void Allocation_Matrix_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
int Total_Row_Check;
Total_Row_Check = getRow();
Textbox1.Text = Convert.ToString(Total_Row_Check);
if (Total_Row_Check >= Convert.ToInt32(Total_Processes.Text))
{
MessageBox.Show("rows cannot exceed from total number of processess");
}
}
}
public int getRow()
{
int Row = 0;
string[] arLines;
int i;
arLines = Allocation_Matrix.Text.Split(new string[] { Environment.NewLine }, StringSplitOptions.None);
for (i = 0; i < arLines.Length; i++)
{
Row++;
}
return Row;
}
je veux mettre à jour TextBox1 que j'appuyez sur Entrée dans richtextbox du clavier ... mais Textbox garde montrent que FirstRow et montre un (1)
getRows public int() { string [] de Arlines; int i; arLines = Allocation_Matrix.Text.Split (nouvelle chaîne [] {Environment.NewLine}, StringSplitOptions.None); pour (i = 0; i
Le code ci-dessus fonctionne maintenant ..... ALORS vous vous trompez :( –