Create dialog dynamically?
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

