Bug ? Textobject's click event is failure in the first subreport of every page.
Run FastReport.net Demo, Select Genral\Subreport, then Click the "Run the Designer", select the "SubReport1" in the Designer, select the Text1,
in properties windows, Attach to an Click event, Code Here:
private void Text1_Click(object sender, EventArgs e)
{
TextObject _Text = sender as TextObject;
MessageBox.Show("test" + _Text.Text);
}
Preview, The text1's click event is failure in the first subreport of every page.
FastReport 1.7.4, Win7
in properties windows, Attach to an Click event, Code Here:
private void Text1_Click(object sender, EventArgs e)
{
TextObject _Text = sender as TextObject;
MessageBox.Show("test" + _Text.Text);
}
Preview, The text1's click event is failure in the first subreport of every page.
FastReport 1.7.4, Win7