When I run ddsSyncWithForm, it does not block my code from proceeding. For example
procedure( myButtonCB()
ddsSyncWithForm(myForm 'browse 'libName 'cellName 'viewName)
myfunction()
)
I would like myfunction to run after the user has selected a cellview, instead it exectes immediatly.
As suggested in another post, I do not want to just trigger every time myForm->viewName is changed since I cannot know that the user has chosen the cell they want yet.
Is there a way to create a dialog that where the user selects a LCV and then returns that selection and allows the code to continue to execute or do I need to write my own implementation?
Thank you,
Aaron