When developing a COM based application sometimes it’s sometimes useful to register all the DLLs/OCX at once.From a command prompt C:\develep\project\release\>for %i in (*.dll,*.ocx) do regsvr32.exe %i /sThis will try to register all dll’s even if
Read More