> In your native code just before launching the native dialog do:
> HWND handle = FindWindow(NULL, yourmainFrameTitle);
> Then use this handle as parent window handle on your native dialog.
>
> Regards
Thanks Jean.
My main frame has a variable name, but it always starts with a word that
i know.
is there another function that matches a regex expression for example? I
tried to find one, but can't find any.
Your help is greatly appreciated.
thanks
hilz - 21 Jul 2006 18:03 GMT
>> In your native code just before launching the native dialog do:
>> HWND handle = FindWindow(NULL, yourmainFrameTitle);
[quoted text clipped - 10 lines]
> Your help is greatly appreciated.
> thanks
Ok, never mind... i found it.
I can use the EnumWindows to get the windows and test them one by one.
Sorry for the OT. this has nothing to do with Java!
Thanks