Argument list error C++/CLR

172 Views Asked by At

I am creating a sound recognition program and there is a syntax error I can't solve in C++ here it is:

sRecognize->SpeechRecognized += sRecognize_SpeechRecognized;

The error says:

Error 1 error C3867: 'SoundRecognizer::MyForm::sRecognize_SpeechRecognized': function call missing argument list; use '&SoundRecognizer::MyForm::sRecognize_SpeechRecognized' to create a pointer to member d:\c++\studio\testing\soundrecognizer\soundrecognizer\MyForm.h 114 1 SoundRecognizer

The function sRecognize_SpeechRecognized:

private :  
void sRecognize_SpeechRecognized(Object^ sender, SpeechRecognizedEventArgs^e)
{                   
    if (e->Result->Text == "exit")
    {
        Application::Exit();
    }
    else
    {
        textBox1->Text = textBox1->Text + " " + e->Result->Text->ToString();
    }       
}
0

There are 0 best solutions below