DlgToWin by KetilO

This AddIn creates all the code needed to create an app from a dialogbox in RadASM.

How to install:
Copy DlgToWin.dll to C:\RadASM\AddIns
Copy *.rad to C:\RadASM\Templates

Edit RadASM.ini and add the following;


xx=DlgToWin.dll,1

Where xx is the next available AddIn

How to use:

In RadASM, open a dialog box in the editor. From the Tools menu select Dialog to window Make your choices and click OK. The result is shown in the output window. Copy all or selected code to your asm file. You can edit the templates to suit your programming style.

DlgToWin addin.

You can choose from four templates:

1. DlgToWin.rad
Creates a running app using CreateWindowEx on window and controls from a RadASM dialogbox.
Also creates a WM_COMMAND section on buttons and menu items.

2. DlgAsMain.rad
Creates a running app using dialogbox template as main window from a RadASM dialogbox.
Also creates a WM_COMMAND section on buttons and menu items.

3. DialogApp.rad
Creates a running app using dialogbox template from a RadASM dialogbox.
Also creates a WM_COMMAND section on buttons and menu items.

4. Dialog.rad
Creates a dialogbox proc to be included in a larger project.
Also creates a WM_COMMAND section on buttons and menu items.

You can also export individual sections, change the proc name and add a menu.