Hello again, sorry to ask you so much things
I have an other problem :
I'm using the component in a web application.
On the client side, the user modifies the diagram, so I update the hiddenfield each time he draws something :
Sub fcx_DocModified()
form1.HiddenField1.Value = form1.fcx.SaveToString(True)
end Sub
I have a button which authorize the user to export to xml. The matter is that the page is reload, so on the server side, I try to get the value of the hidden field :
myflowChart.LoadFromString(HiddenField1.Value)
but it raises an error :
Error HRESULT E_FAIL has been returned from a call to a COM component.So, I would like to know if it's possible to get, on the server side, the modifications done by the user on the client side?