Vladimir Vissoultchev
Vladimir Vissoultchev
Some comments in golang sources speak about `raint` and `raints`. I just checked that these used to be `constraint` and `constraints` in original C sources. Possibly a cleanup with find...
If `MyComDll.dll` is an x64 executable this might be a problem because UMMM does not have an x64 version yet.
Is this COM DLL registered with regsvr32?
The error generally means that UMMM cannot access the type library living inside the referenced OCX using the system provided TLBINF32.DLL helper DLL. Btw, you don't need clean OS to...
Ooops, sorry about that! So it seems UMMM *does* have a non-system provided dependency.
Btw, there are precompiled `UMMM.exe` executables for current and past versions in the repo's [releases](https://github.com/wqweto/UMMM/releases) page.
``` Private Function pvDumpTrustInfo(ByVal lLevel As Long, ByVal bUiAccess As Boolean, cOutput As Collection) As Boolean ``` Notice that first `At` provides the trust level which defaults to "1" while...
Try quoting the empty strings like this File UcsFP20.dll "" "" Dependency\UcsFP20.dll Yes, the syntax got weird but this is what organic growth looks like I suppose. . .
UMMM uses both typelib from dll/ocx files *and* registry entries to construct manifest xml. Which means that dll/ocx files *have to* be registered before generating project manifest. Implementing registry redirection...
I though that .Net classes just have to be decorated with [[STAThread]](https://msdn.microsoft.com/en-us/library/system.stathreadattribute(v=vs.110).aspx) and [[MTAThread]](https://msdn.microsoft.com/en-us/library/system.mtathreadattribute(v=vs.110).aspx) attributes and then COM interop automagically bakes the marshaling support in the executable. Not sure you...