6
'Cause I’m having trouble showing off MessageBoxButtons
if it is not a string?
static void Main()
{
string texto = "Minha primeira MessageBox";
MessageBoxButtons botao = MessageBoxButtons.OKCancel;
DialogResult result;
result = MessageBox.Show(texto, botao);
if(result == DialogResult.OK)
{
MessageBox.Show("Isso ai");
}
}
Yes, I understand now. When checking the documentation, I didn’t see anything specifying that I needed two string parameters before a Messageboxbuttons. But you should also have been aware of the examples. Thank you very much
– Felipe
If you’ve solved your problem you can accept the answer, right next door.
– Maniero