I am trying to get a very simple non-modal app working
app starts non-modal form X which retrieves and displays an overview list of persons → OK
in a detail trigger I want to start a non-modal form Y with the details of the specific person
so I do a newinstance of form Y (with "MODALITY=NON-MODAL;TRANSACTION=TRUE")
followed by activate->ShowPerson(selectedPersonID)
if I use a local variable of type handle for the newinstance → Not OK, nothing showing
if I use a component variable of type handle or a general variable for the newinstance → OK
focus back on form X where I want to choose another person → OK
the first person detail form disappears/is replaced by the second ??? → Not OK
how to keep both detail forms open at same time and as seperate transactions ? I have no idea how many details will be opened so declaring multi component variables is not an option
putting the handles in a list does not work
Help ? any examples ?