I have used the launch form option in Customization, it works fine with the QuoteNum passed in the value for the first time . But if I again launch the option with different value the Quote form doesn’t refreshes with the new quote.
Is there any GAP which I might be missing ?
Below is the code
LaunchFormOptions lfo = new LaunchFormOptions();
UltraGridRow activeRow = MyGrid.ActiveRow;
lfo.ValueIn = activeRow.Cells[“QuoteHed_QuoteNum”].Value.ToString();
lfo.IsModal = false;
ProcessCaller.LaunchForm(oTrans, “EQMT2010”, lfo);
Any help will be appreciated.