
Here is my problem :
1. Run VisualDirSize
2. Open the config dialog for VisualDirSize
3. Put focus on any other window
4. Return to Total Commander - the dialog is gone and it's impossible to get to it
The solution is to kill TC or use Alt+Esc to cycle through open applications - sometimes
missing dialog is displayed.
I'm using standard method to generate modal window. This code compiled in Delphi 7 or 2005
generates that bug mentioned above. If someone could help me with it...
Code: Select all
procedure TMyForm.ToolButton17Click(Sender: TObject);
var
Form2: TForm2;
begin
Form2 := TForm2.Create(Application);
try
Form2.ShowModal
finally
Form2.Release;
end;
end;