News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Fasm and MasmBasic

Started by clamicun, April 25, 2017, 07:42:31 AM

Previous topic - Next topic

clamicun

same story
messagebox

bad DLL?
RichEdit20A

clamicun

Nein

ReTest25April.exe does it  ... Opens a console window before and loads RichEdit
RichEdit.exe doesn't

jj2007

Quote from: clamicun on April 27, 2017, 02:31:58 AMReTest25April.exe does it  ... Opens a console window before and loads RichEdit

Great, thanks for testing :icon14:

New version 26 April is online. As mentioned above, there is no need to disinstall MasmBasic or delete folders etc, just download & run the installer, it will detect which files need updating.

LordAdef

QuoteNew version 26 April is online.

JJ, in my case, should I update as well (I´m ok here, everything rock-solid as usual)

jj2007

Quote from: LordAdef on April 27, 2017, 03:23:24 AM
QuoteNew version 26 April is online.

JJ, in my case, should I update as well (I´m ok here, everything rock-solid as usual)

Yes, why not. Here is a nine-liner that can help you ;)

GuiParas equ "Hurry up, get MasmBasic!!!!", w180, h48, s0
include \masm32\MasmBasic\Res\MbGui.asm
GuiControl GoOnline, "syslink", 'Click here to download MasmBasic'
Event Command
  .if NotifyCode==NM_CLICK && wParam==GoOnline
      wMsgBox 0, Link$(), "Open?", MB_OKCANCEL
      If_ eax==IDOK Then <wShEx Link$()>
  .endif
GuiEnd