News:

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

RadASM 3.0 bugtest

Started by KetilO, May 31, 2010, 12:28:11 PM

Previous topic - Next topic

remus2k

Yes Gunner tip works

sorry my bug :bg

To the radasm2 to radasm3  theme problem
as what if this color stored as hex in the ini

why can i not use my old theme?

qWord

hi,

the 'open include'-function won't work, when the include path is follwed by an comment:
for an example in masm32rt.inc:
include \masm32\macros\macros.asm         ; masm32 macro file

Also the window serving function names (code completion e.g. for invoke) is allways sized to small and must be adjusted by hand.

There seems also be problem in the block-mode (ctrl+b) whit tab's - because on picture says more than thousand words, here an screenshot  :dance:


regards, qWord
FPU in a trice: SmplMath
It's that simple!

remus2k

Correct

It same with call

I look in the masm.ini in radasm2 and see this
[CodeComplete]
Trig=invoke,func(,call,$invoke(

Radasm3 masm.ini
[CodeComplete]
Trig=invoke

Now have test it and paste it in the new masm.ini

Now works this call for codecomplete but not for include and includelib

qWord

ok, this only an (big) feature request:

may it possible to add an find/replace operation using regular expression?

regards, qWord
FPU in a trice: SmplMath
It's that simple!

remus2k

Hi Ketil

I have found some resource bugs
Is not realy a bug only Cosmetic :lol

Resouces cosmetics for Radasm and UpdateChecker plugin

Something has been wrong proportion
Your can look the difference with WinMerge

I have all Change it this cosmitic bugs and save it as
Rc and Rsrc for the other users u can update all Resource with ResTools from my .Rsrc files

My Archive Files:

-  RadASM30.rc
-  RadASM30.rsrc
-  UpdateChecker.rc
-  UpdateChecker.rsrc

And something pictures you can see this proportion bugs
Not all

Greets

remus2k

And this Picture

And I have see open the UpdateChecker plugin project in radasm
and go to the updater dialog you can see If more over  buttons
gives a Flicker probelm

with Update,Unzip,Download button if Over

Swf Movie
http://www.2shared.com/file/Y8jSv-jL/screen.html

Biterider

Hi
If it helps, i have a static lib of PCRE 8.1 that can be used for the regular expression search. If wanted, I can post it.

Regards,

Biterider

Shooter

Question about using RadASM 3.x:

Is it possible to set up in the Tools menu the ability to launch a debugger and have the current project's executable automatically open with it via a variable?

I.e. "Ollydbg.exe /currentexe" or "WinDbg.exe /currentexe" or "VCExpress.exe /currentexe"
Never use direct references to anything ever. Bury everything in
macros. Bury the macros in include files. Reference those include
files indirectly from other include files. Use macros to reference
those include files.

Gunner

Quote from: Shooter on January 06, 2011, 02:10:35 AM
Question about using RadASM 3.x:

Is it possible to set up in the Tools menu the ability to launch a debugger and have the current project's executable automatically open with it via a variable?

I.e. "Ollydbg.exe /currentexe" or "WinDbg.exe /currentexe" or "VCExpress.exe /currentexe"

Sure, anything is possible with Addins!  :bg  I wrote an addin for both 2x and 3x BETA and so has Donkey and many others...

Create an addin, and get the current project name, tack on .exe and pass that to your debugger...
~Rob (Gunner)
- IE Zone Editor
- Gunners File Type Editor
http://www.gunnerinc.com

Shooter

Quote from: Gunner on January 06, 2011, 02:28:24 AM
Sure, anything is possible with Addins!  :bg  I wrote an addin for both 2x and 3x BETA and so has Donkey and many others...

Create an addin, and get the current project name, tack on .exe and pass that to your debugger...

Cool. Now I'm treading into newer waters.
Never use direct references to anything ever. Bury everything in
macros. Bury the macros in include files. Reference those include
files indirectly from other include files. Use macros to reference
those include files.

donkey

Personally I rarely find a need to use an external debugger like Olly or GoBug for my own code. I have my implementation of VKim's debug macros that do most of what I would ever use one for and since I wrote the implementation and the addin for both 2.x and 3.x I can tweak it as needed. Also for the few times I actually could put a debugger to good use I have GoP (unreleased as of yet) that can give me various performance benchmarks. I tend to use a debugger to view the disassembled code more than anything else and I am working on improving that functionality in GoP so I can see the time when they are just another tool left unused.

I think that some MASM user should think about tackling VKim for RadAsm 3 using MASM, it is to this day one of the most useful debugging tools I have ever used.
"Ahhh, what an awful dream. Ones and zeroes everywhere...[shudder] and I thought I saw a two." -- Bender
"It was just a dream, Bender. There's no such thing as two". -- Fry
-- Futurama

Donkey's Stable

Gunner

in the radasm 3 dir, look in projects > masm > addins (something like that)  and open one of the addin projects and modify
~Rob (Gunner)
- IE Zone Editor
- Gunners File Type Editor
http://www.gunnerinc.com

Gunner

donkey, i thought about that...  liked how the debug macros used the ouput window of 2x   so i might get on that thought :-)
~Rob (Gunner)
- IE Zone Editor
- Gunners File Type Editor
http://www.gunnerinc.com

qWord

Quote from: Biterider on January 05, 2011, 07:14:42 PMIf it helps, i have a static lib of PCRE 8.1 that can be used for the regular expression search. If wanted, I can post it.
that would be really nice.

qWord
FPU in a trice: SmplMath
It's that simple!

Biterider

Hi qWord
Here is the code. An example can be found here and the doc here.

Regards,

Biterider