Using Delphi 2009 on Windows XP to develop desktop application.
Is there any way to make a windows dialog modal to a tab, instead of application. How can I achieve this? Threads? any frameworks supporting this?
Something similar to

Thanks in advance.
Kind Regards,
Pavan.
One way is to simulate this is:
Parentto the tab sheetFormStyle := fsStayOnTopBorderStyle := bsNoneThis way you have a dialog on top of a tab sheet and it’s the only thing that users can interact with on this tab sheet, but it doesn’t block the main form ui or other tab sheets.