This is a migrated thread and some comments may be shown as answers.

RadForm Button click

3 Answers 181 Views
Documentation
This is a migrated thread and some comments may be shown as answers.
Cihangir
Top achievements
Rank 1
Cihangir asked on 11 Sep 2016, 09:33 AM

Hi

When I click the button I want to go to the Radform1 but not working. Help me please

I use code (Button click):

Radform1.show();

this.hide();

3 Answers, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 12 Sep 2016, 10:20 AM
Hello Cihangir,

Thank you for writing.

I have tested this and it is working fine on my side (see attached video). This is why I wanted to ask you which version of the controls you are using? Are you able to reproduce this in a small sample project?

I am looking forward to your reply.
 
Regards,
Dimitar
Telerik by Progress
Check out the Windows Forms project converter, which aids the conversion process from standard Windows Forms applications written in C# or VB to Telerik UI for WinForms.For more information check out this blog post and share your thoughts.
0
Christine
Top achievements
Rank 1
answered on 29 Sep 2016, 08:12 PM

Not sure if you figured it out, but for anyone else...

I had a problem with Show(). I had to use ShowDialog().

MyForm myForm = new MyForm();
myForm.ShowDialog();
myForm.Dispose();

0
Dimitar
Telerik team
answered on 30 Sep 2016, 10:23 AM
Hello Christine,

Please note that these two methods are used for different purposes. The ShowDialog method shows a modal form: c# - What's the difference between Show(), ShowDialog() and Application.Run() functions? - Stack Overflow

If you have an issue using the Show method I would suggest to open a support ticket and describe your exact case there.

Do not hesitate to contact us if you have other questions.
 
Regards,
Dimitar
Telerik by Progress
Check out the Windows Forms project converter, which aids the conversion process from standard Windows Forms applications written in C# or VB to Telerik UI for WinForms.For more information check out this blog post and share your thoughts.
Tags
Documentation
Asked by
Cihangir
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Christine
Top achievements
Rank 1
Share this question
or