Completed
Last Updated: 04 Apr 2013 03:23 by ADMIN
ADMIN
Anton
Created on: 04 Apr 2013 03:23
Category: Dock
Type: Bug Report
2
FIX. RadDock - when loading layout, the control reads the stream from the current position instead from the beginning of it.
RadDock - when loading layout, the control reads the stream from the current position instead from the beginning of it. This lead to exception "Root element is missing".

Steps to reproduce:

Dim strmDock As New MemoryStream

RadDock1.SaveToXml(strmDock)
RadDock1.LoadFromXml(strmDock)


Work around:
stream.Position = 0;
0 comments