Re: regsvr32 problem - Debugging
Great, thanks a lot. I've debugged it now and come to a function which has been generated for me, BOOL CStylePropertyPage::CStylePropertyPageFactory::UpdateRegistry(BOOL bRegister)
In this, there is a little comment: // TODO: Define string resource for page type; replace '0' below with ID.
What string resource is it talking about? Is it just any string, or some special?
Sincerely yours
Niklas Saers
Re: regsvr32 problem - Debugging
does it have some code that looks like return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
m_clsid, 0);
?
If so, just define a string resource (it can say anything you want) and put its ID in place of the zero.
HTH
--michael
Re: regsvr32 problem - Debugging
Thank you very much. That was exactly what I tried :) , and I got a bit further (3/8 further ;) ) as described in the 'New regsvr32 problem' posting.
Sincerely yours
Niklas Saers