I have an application that takes several different forms. From the main form, I can open several other forms, I use the following command to display the selected window:
frmConversions.ShowModal;
As soon as the user completes what they need to do in this window and they close this window, I will close the window using the following:
frmConversions.Close;
However, if the user returns to frmConversions, the settings they previously selected will still be selected / entered. I process several windows correctly, and if so, how can I stop saving data?
source share