News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

RadASM 2.2.1.2 bugtest

Started by KetilO, May 10, 2007, 11:52:55 AM

Previous topic - Next topic

KetilO

IMPORTANT:
You need to have RadASM 2.2.1.1 or 2.2.1.2 installed.

Whats new in RadASM 2.2.1.2
---------------------------------------------
o Included several improvements by drizz.
o Added images to tab select.

KetilO

New upload 07.10.2007
o New RadASM icon by Anton Lesnichenko
o Default control sizes in dialog editor.


[attachment deleted by admin]

KetilO

New upload:

o New RadASM icon by Anton Lesnichenko
o Default control sizes in dialog editor.

KetilO

Shantanu Gadgil

QuoteDefault control sizes in dialog editor.
Hi,
What is this feature? How does this work?
I tried searching for this a lot, couldn't find it!!!  :red :'(

The new icon is good, BTW!!!  :U
Regards,
Shantanu
To ret is human, to jmp divine!

KetilO


Shantanu Gadgil

Hi,
Sorry to be a bother ... I still don't understand the what the "default control size" thing is !?!  :red :red

Is it something in ResEd, or in RadASM or in both ???

Most likely I am missing something very obvious!!!

Regards,
Shantanu
To ret is human, to jmp divine!

ramguru

That feature is present.
Let's say you want to add a button to the dialog, earlier you had to define initial rect of it using mouse, now you simply choose button, click on dialog, and initial width & height of button is made by default.

Shantanu Gadgil

Aah! Thank you for clearing that up!!!  :bg

Regards,
Shantanu
To ret is human, to jmp divine!

ramguru

Preview feature does some crappy work  :wink

KetilO

Thanks

The Preview addin needed to be updated.

KetilO

[attachment deleted by admin]

ramguru


ostaith

hi KetilO,

i install Radasm in D:\Radasm, and OllyDbg in D:\Ollydbg
when i use Radasm's [MakeDefNoProject], the following my config:

[MakeDefNoProject]
MenuMake=1,1,1,1,1,1,1,1,0,0
1=$.res,O,$B\RC.EXE /v,$.rc
2=$.obj,O,$B\ML.EXE /c /coff /Cp /nologo /I"$I",$.asm
3=$.exe,O,$B\LINK.EXE /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:"$L",$.obj,$.res
4=0,0,,$.exe
5=$.obj,O,$B\CVTRES.EXE,$.res
6=*.obj,O,$B\ML.EXE /c /coff /Cp /nologo /I"$I",*.asm
7=0,0,"$E\OllyDbg.EXE",$.exe
11=$.res,O,$B\RC.EXE /v,$.rc
12=$.obj,O,$B\ML.EXE /c /coff /Cp /nologo /Zi /I"$I",$.asm
13=$.exe,O,$B\LINK.EXE /SUBSYSTEM:WINDOWS /DEBUG /VERSION:4.0 /LIBPATH:"$L",$.obj,$.res
14=0,0,,$.exe
15=$.obj,O,$B\CVTRES.EXE,$.res
16=*.obj,O,$B\ML.EXE /c /coff /Cp /nologo /I"$I",*.asm
17=0,0,"$E\OllyDbg.EXE",$.exe


i build a .asm file, then i click "Make -> Run w/Debug", it only execute my program, but not debug my program with Ollydbg,
is it a bug?

thanks!

ragdog

hi ostaith

set the paths to ollydbg

[Paths]
$A=C:\Masm32
$B=$A\Bin
$D=$R\AddIns
$H=$A\Help
$I=$A\Include
$L=$A\Lib
$P=$R\Masm\Projects
$S=$R\Masm\Sniplets
$T=$R\Masm\Templates
$M=$R\Masm\Macro
$E=D:\Ollydbg <<-------------------


greets ragdog

ostaith

hi ragdog, i set the paths to ollydbg, but it can't work still.

if i create a project, the "Run w/Debug" work well.

this problem only exist in MakeDefNoProject.

Mark Jones

Quote from: ostaith on July 29, 2007, 02:30:58 PM
...
7=0,0,"$E\OllyDbg.EXE",$.exe
...
17=0,0,"$E\OllyDbg.EXE",$.exe


Hello, try the following:

...
7=0,0,"$E\OllyDbg.EXE",
5
...
17=0,0,"$E\OllyDbg.EXE",
5
"To deny our impulses... foolish; to revel in them, chaos." MCJ 2003.08

ragdog

hi


i have copy ollydbg to d:\ and set the paths by radasm to ollydbg

mean you this error??
;-------------------------------------
UDD Directory absent

UDD directory 'C:\OllyDbg' doesn't exist. Please specify valid path in Options|Appearance|Directories, otherwise breakpoints, comments and analysis data will be lost after debugged program terminates.

;---------------------------------------

i have set the path in ollydbg.ini

Symbolic data path=d:\OllyDbg
UDD path=d:\OllyDbg
Plugin path=d:\OllyDbg

ragdog