UMMM icon indicating copy to clipboard operation
UMMM copied to clipboard

Compiling UMMM (VB6) on Windows

Open JomiliDesign opened this issue 3 years ago • 2 comments

Hi there, I had a lot of trouble to compile UMMM, because it uses VB6 at the bottom. Lot of VB was over the time carried to .NET via VS2008 migration wizards.

You need Microsoft Visual Studio 6, which has the VB6 compiler: https://winworldpc.com/product/microsoft-visual-stu/60

If you are installing VS6 above WinXP, read this article to install it on newer versions of Windows: https://www.codeproject.com/Articles/1191047/Install-Visual-Studio-on-Windows

Then you are able to find VB6.exe installed here by default: C:\Program Files (x86)\Microsoft Visual Studio\VB98

Copy the Ummm.vbp and mdUmmm.bas beside VB6.exe.

Open the command line there and run: VB6.EXE /MAKE Ummm.vbp

You now have the Ummm.exe available to run.

Don't forget to clean up. Cheers'

JomiliDesign avatar Mar 31 '22 10:03 JomiliDesign

@SkullbocksDE I do not recommend copying files into the installation folder of any program. Instead of that you can use the full path to VB6 instead. e.g.:

C:\Program Files (x86)\Microsoft Visual Studio\VB98\VB6 /MAKE Ummm.vbp

That will work if you are in the same directory as the UMMM files.

You could also add VB6 (or any other program) to the system path if you need to use it often.

DavidHollman avatar Mar 31 '22 11:03 DavidHollman

Btw, there are precompiled UMMM.exe executables for current and past versions in the repo's releases page.

wqweto avatar Mar 31 '22 17:03 wqweto