Create dialog dynamically?

Hallo,
Now I have another problem :(
I am working with a filter in DirectShow using Microsoft Visual C 8, I already created this Filter and now it's the time for creating its User Interface. My filter reads data in XML file, and try to process it. And my problem is how to create dialogs in my interface dynamically every time using this filter??
For example:
here is my XML file
<params>
<param name="a" datatype="int" source="asource" />
<param name="b" datatype="int" source="asource" />
</params>
And I want everytime I running this filter, 2 dialog boxes for these 2 parameters will be created automatically. If the number of params in XML file changes to 3-4 params, then I do not need to change my code and it must work well. Is there any way to do like this?
Thank you very much for any help
Regards
[884 byte] By [rambovn] at [2007-11-20 11:30:23]
# 1 Re: Create dialog dynamically?
http://www.dev-archive.com/cpp/w-d/dislog/miscellaneous/article.php/c5015/
JohnW@Wessex at 2007-11-9 13:32:39 >
# 2 Re: Create dialog dynamically?
There are lots of ways - regular dialog with hidden/shown controls, dialog with dynamically added controls, dialog built on a template that is built on the fly, html dialog with dynamically built html source. Finally it depends on how far your imagination can go.
Igor Vartanov at 2007-11-9 13:33:49 >