So I have a button that loads a custom Usercontrol into a flow panel. My issue is that I am trying to have a "Save" button go through and take the info from all of the user controls and save them to an XML file. I do not really even know where to start here. I have saved to XML from already loaded parts of a form, but never from dynamically loaded objects. So there is a group of text boxes in each of the Usercontrols, so say there are 2 of those loaded the XML file would look like this:\[code\]<Operation> <OperationInfo> <OperationName>Name</OperationName> <OperationDate>mm/dd/yyy</OperationDate> <FC>Someone</FC> </OperationInfo> <Pilots> <Pilot> <PilotName>Name2</PilotName> <Ship>Ship</Ship> <StartTime>00:00</StartTime> <EndTime>00:00</EndTime> <Hours>0</Hours> <Pay>0</Pay> </Pilot> <Pilot> <PilotName>Name3</PilotName> <Ship>Ship</Ship> <StartTime>00:00</StartTime> <EndTime>00:00</EndTime> <Hours>0</Hours> <Pay>0</Pay> </Pilot> </Pilots></Operation>\[/code\]And if I had a 3rd there would be another instance of "Pilot"