The attached beta has a new version of RichMasm allowing, inter alia, to translate hyperlinks very directly into source code - see second attachment.
GuiParas equ "ToolTips for the SysLink control", w300, h80
include \masm32\MasmBasic\Res\MbGui.asm
GuiControl GetHelp, "syslink", h0+20, "Click
here to download MasmBasic, or
here for online help"
GuiControl VisitMoscow, "syslink", y0+20, h0+40, "Get info on
Moscow: Развлечения, история, музеи, рестораны-кафе, гостиницы, информация"
Event Command
.if NotifyCode==NM_CLICK && (wParam==GetHelp || wParam==VisitMoscow)
wMsgBox 0,
Link$(), "Open this page?", MB_OKCANCEL
If_ eax==IDOK
Then <
wShEx Link$()>
.endif
GuiEndRsrc#include "resource.h"
IDI_APPLICATION ICON "\\Masm32\\MasmBasic\\icons\\Smiley.ico"
01 RT_MANIFEST "\\Masm32\\MasmBasic\\Res\\XpManifest.xml"
RsrcThis is how it looks in the editor:
EDIT: Beta removed, the
current version has the new features now.