can somebody tell me how to call
checkBox1_CheckedChanged(System::Object^ sender, System::EventArgs^ e)
function?
i tried:
checkBox1_CheckedChanged(checkBox1,EventArgs::Empty);
and
checkBox1_CheckedChanged(checkBox1,gcnew EventArgs());
but it doesn’t work.
Change your call from:
to:
(notice the first letter C is capitalized).