Glitches in the Matrix, er…NeatTools

Step one, I’ve identified the Windows function that created the toolbox windows. It’s in JComponent.cpp here: //Toolbox! JComponent* JComponent::createJDialog(char* name, JComponent* p, boolean widthSysMenu, void** arg) { HWND hWnd = CreateWindowEx( WS_EX_TOPMOST, name, "", WS_POPUP | WS_CLIPCHILDREN | WS_CAPTION | WS_DLGFRAME | WS_SIZEBOX | ((widthSysMenu) ? WS_SYSMENU : 0), 0, 0, 0, 0, (HWND)(int)*p, null, […]

Continue reading

First Build

So, I did a preliminary build.  I’m using Microsoft Visual Studio Express 2013 for Windows Desktop. And the source files from Sourceforge. I started with these instructions for building the executable from source in Visual Studio. I didn’t get the errors he mentioned, but I did get three errors, which can be fixed (at least […]

Continue reading