I am relatively new to delphi.
what i am try to do it to open a new form from the main one as a pop-up window, let the user input certain values in there (two integers and a check box), and use these values as parameters in a procedure to call in the main form (to create a new object), when the user clicks the 'done' button in the pop-up form, also closing & freeing the popup.
i cannot add the main form in the uses list of the pop-up form, as this creates a circular reference, because the pop-up form is in the 'uses' list in the main form in order to make it appear on the click of a button. but now i cannot call the procedure in the main form (to create the new object with the inputted parameters) from the pop-up form.
what do i do?
much appreciated