Hi Telerik,
I got 2 forms...I got some datagridview in the form2. I want to change the column header names into French when the user clicks on the french button.
I have created a method in Form2 and called from Form 1:
I made the radgrid modifiers to public and the radpageview changed to public. When i excute it nothing is changing. When i test with RadMessagebox, it works.
Please assist me. Thannk you.
I got 2 forms...I got some datagridview in the form2. I want to change the column header names into French when the user clicks on the french button.
I have created a method in Form2 and called from Form 1:
I made the radgrid modifiers to public and the radpageview changed to public. When i excute it nothing is changing. When i test with RadMessagebox, it works.
Please assist me. Thannk you.
private
void
radButton1_Click(
object
sender, EventArgs e)
{
timer1.Enabled =
true
;
radLabel1.Visible =
true
;
radProgressBar1.Visible =
true
;
var f =
new
Form1();
f.changeRadGridview();
}
//Form 2 where I want to change the col name of the radgrid
internal void changeRadGridview()
{
radGridView1.Columns[2].HeaderText = "First Name";
radLabel5.Text = "hi";
}