Properties window in designer control
Good day!
Can somebody tell me why I can't make properties window visible in designer control?
In Visual Studio it appears correctly but when I'm running the code it doesn't visible.
On the right side nothing appears (no properties, data, report tree, etc.).
I tried the menu View -> Properties, but nothing happened.
Thank you for your help.
Can somebody tell me why I can't make properties window visible in designer control?
In Visual Studio it appears correctly but when I'm running the code it doesn't visible.
On the right side nothing appears (no properties, data, report tree, etc.).
I tried the menu View -> Properties, but nothing happened.
Thank you for your help.
Comments
Delete the FastReport.Net configuration file. It can be found here:
Windows XP:
C:\Documents and Settings\user_name\Local Settings\Application Data\FastReport\FastReport.config
Windows Vista:
C:\Users\user_name\AppData\Local\FastReport\FastReport.config
The problem stayed the same.
I deleted the file but nothing is on the right side.
Probably you forgot to add this code in the Form_Load event handler:
// restore the design layout. Without this code, the designer tool windows will be unavailable
designerControl1.RefreshLayout();
see the Demos\C#\CustomDesigner demo.
That was the problem.