In C# I'm trying to implement a Custom Property Page for a project. I've
implemented the ISpecifyPropertyPages interface but how do I fill the CAUUID
structure. There doesn't seem to be any documentation.
Thanks
Martin
This is the code and I believe it is correct
pPages[0].cElems = 1;
pPages[0].pElems = Marshal.AllocCoTaskMem( (int)(pPages[0].cElems *
sizeof(Guid))) ;
Marshal.StructureToPtr(Marshal.GenerateGuidForType(typeof( PropPage)),
pPages[0].pElems, true) ;
Now I get a "Catastrophic Failure" when I call a property page. What am I
doing wrong
> In C# I'm trying to implement a Custom Property Page for a project. I've
> implemented the ISpecifyPropertyPages interface but how do I fill the CAUUID
> structure. There doesn't seem to be any documentation.
>
> Thanks
> Martin