I've been trying to use tomazy's FutureWindows infrastructure (see his answer at Delphi GUI Testing and Modal Forms or the home of the tool at https://github.com/tomazy/DelphiUtils), but would like to know if and how can it be used with standard Windows file open dialogs? They don't seem to be inheriting from TControl, which the FutureWindows infra seems to assume (unless I've misunderstood it).

What I'd like to do is basically to just select a file in an OpenFileDialog which is opened modally by a command within my testing, but haven't yet been able to figure out how to do this.

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

Use a tool like Spy++ to find out what the window class name is. For example, on my Windows 7 machine, the window class name for a system file open dialog is #32770 (Dialog).

link|improve this answer
Thanks, I actually noted that FutureWindows has this as a const (MESSAGE_BOX_WINDOW_CLASS) and thus I got access to the dialog as an IWindow (FutureWindows interface). Now my problem is to get this interface to object, because the interface only provides an AsControl method, which I doubt will work since the dialog is not a TControl. Without it, I don't know (yet) how to set the FileName property of the dialog... – DelphiUser Feb 23 at 11:49
You are correct, AsControl cannot work. You could use EnumChildWindows to hunt down the target window, but there may be an easier way. Could you not mock this? – David Heffernan Feb 23 at 12:19
I googled around a bit and ended up with this, which seems to work: Windows.SetDlgItemText(DlgHandle, 1148, PChar(FileName)); Utilizing this: social.msdn.microsoft.com/forums/en-US/winforms/thread/… So basically I send a message to set the filename to the correct control (ID 1148 works at least on my Windows 7 :) ) – DelphiUser Feb 23 at 12:22
1  
That sounds like an excellent plan. By the way do you know about accepting answers yet? – David Heffernan Feb 23 at 17:58
I think I do - I was planning to summarize my result as an answer to my own question and accept it, but I didn't have the permission to do that for some hours. Now I might have... – DelphiUser Feb 24 at 9:04
show 6 more comments
feedback

My current solution is below:

TFutureWindows.Expect(MESSAGE_BOX_WINDOW_CLASS)
  .ExecProc(
    procedure (const AWindow: IWindow)
    var
      DlgHandle: HWND;
      FileName: string;
    begin
      FileName := ExpandFileName('myFileToUse.txt');
      DlgHandle := AWindow.GetHandle;
      Windows.SetDlgItemText(DlgHandle, 1148, PChar(FileName));
    end
    )
  .ExecSendKey(VK_RETURN);

So basically sending a message using Windows API. The ideas (and the ID 1148) were found from here: http://social.msdn.microsoft.com/forums/en-US/winforms/thread/62d5db14-5497-4ceb-8af0-d7f81732e937/

Possible better solutions are welcome, but this seems fine enough for me at least for now. Thanks for the comments so far!

link|improve this answer
I can't see that you will get a better solution than this. – David Heffernan Feb 24 at 9:16
This is a summary of the (currently) final actual solution, but I marked the answer of @DavidHeffernan above as an answer to grant the recognition of helping in pointing to a helpful direction. – DelphiUser Mar 1 at 9:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.