プログラムで次のエラーが発生し続けます。
'System.Windows.Forms.TextBox.Text' is a 'property' but used like a 'method'
と
Non-invocable member 'System.Windows.Forms.Control.Text' cannot be used like a method.
コードは次のとおりです。
if (OffenceBox.Text != "")
{
AddBook(int.Parse(AgeBox.Text), NameBox.Text, AddressBox.Text, (HeightBox.Text), OffenceBox.Text());
}
else
{
MessageBox.Show("Age must be max 3 numbers in length");
}
}
この問題を解決するにはどうすればよいですか?
編集: エラーを修正し、別のエラーが発生しました:
Argument 4: Cannot convert String to int
問題を修正できないようです。