Group: Forum Members
Last Active: 7 Years Ago
Posts: 99,
Visits: 654
|
I downloaded the current build 13.7.16.12 and have rebuilt my VS2010 application running under Win7. My application works well on the 11.12.14.12 version.
When I try to show my main window I get a NullReferenceException in the Nevron code during the InitializeComponent on this line in my NForm:
this.LayoutBar.Dock = System.Windows.Forms.DockStyle.Bottom;
The stack shows the null reference is in the Nevron code:
> Nevron.Presentation.dll!Nevron.UI.WinForm.Controls.NDockingToolbar.MakeDocked(bool restoreRow) + 0x90 bytes Nevron.Presentation.dll!Nevron.UI.WinForm.Controls.NDockingToolbar.SetDockStyleInternal(System.Windows.Forms.DockStyle style) + 0x6f bytes Nevron.Presentation.dll!Nevron.UI.WinForm.Controls.NDockingToolbar.l1ll1lII11(System.Windows.Forms.DockStyle style) + 0xc8 bytes Nevron.Presentation.dll!Nevron.UI.WinForm.Controls.NDockingToolbar.Dock.set(System.Windows.Forms.DockStyle value) + 0xa0 bytes
In the debugger if I press F5 to continue past this I hit the same exception in the Nevron code when I try to move my layout bar during a post initialization step. Ultimately, my layout bar isn't shown in the proper location. Seems there must be something that needs changing in the MakeDocked method. I don't see how I can work around this issue.
|