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

KetilO

Hi cookj

I will have a look at it.

KetilO

KetilO

Hi Edgar

Use Option / Resource Editor / Resource types and add RT_HTML
I am pretty shure it will work.

KetilO

KetilO

New upload. If you are updating, use Tools / Check for Updates.

Version 3.0.0.7b 2010-09-13
---------------------------
o Fixed dialogs where labels was too small to show all text.
o Fixed a menu bug if a large menu font was used.

KetilO

donkey

Quote from: KetilO on September 13, 2010, 06:41:40 AM
Hi Edgar

Use Option / Resource Editor / Resource types and add RT_HTML
I am pretty shure it will work.

KetilO

Hi Ketil,

Works, thanks.
"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

jcfuller

Quote from: KetilO on September 13, 2010, 09:53:00 AM
New upload. If you are updating, use Tools / Check for Updates.

Version 3.0.0.7b 2010-09-13
---------------------------
o Fixed dialogs where labels was too small to show all text.
o Fixed a menu bug if a large menu font was used.

KetilO

KetilO,
  I am not seeing the 3.0.0.7b in the update window?

James

jcfuller

KetilO,
I have been using RadAsm3 successfully with several languages.
Is it possible to add support for "::" in a Function or Sub listing as in:

Function cSqlDb::GetAt(cn As long) As stdstr
......

End Function

All I get in the Properties -> code area is a list of cSqlDb

James

KetilO

Hi jcfuller

Quote
I am not seeing the 3.0.0.7b in the update window?
Yes, those minor updates will not show.

Quote
Function cSqlDb::GetAt(cn As long) As stdstr
You could try to define ":" as a character
[CharTab]
2=0251222522222236;20-2F
3=1111111111122221;30-3F

KetilO

jcfuller

Quote from: KetilO on October 04, 2010, 11:16:18 AM
Hi jcfuller

Quote
Function cSqlDb::GetAt(cn As long) As stdstr
You could try to define ":" as a character
[CharTab]
2=0251222522222236;20-2F
3=1111111111122221;30-3F

KetilO

Worked just fine.
Thank you for a magnificent versatile ide.

James
 

jcfuller

This one is not too important just baffleing.
Color syntax:
the word integer and all forms of capitalization produce the correct color except Integer ??

James

dancho

Hi KetilO,
first thx for great IDE  :U ,
second I have small error to report...

When the custom struct Point is declared like this ( btw its fasm ):


format PE console
entry cmain
include 'win32ax.inc'
include 'extra.inc'

struct Point
x dd ?
y dd ?
ends

section '.text' code readable executable
cmain:

stdcall Foo
invoke ExitProcess,0

proc Foo uses esi edi ebx
local p:Point

mov [p.x],10
mov [p.y],20

ret
endp


RadASM is working as expected , when I need to reference one element from struct Point ide popups list
with all elements and then I can choose one,so it is ok...

but when the struct is declared somewhere else like this  ( in extra.inc file )

format PE console
entry cmain
include 'win32ax.inc'
include 'extra.inc'

section '.text' code readable executable
cmain:

stdcall Foo
invoke ExitProcess,0

proc Foo uses esi edi ebx
local p:Point

mov [p.x],10
mov [p.y],20

ret
endp


I have to write it manually,after p. IDE doesnt do anything,
not problem with the structs with 2 or 3 elements,
but anything more is well a problem...

thx ones more for your time to develope great ide

Dancho

KetilO

Hi jcfuller

Quote
Integer
Strange, I will look into it.

KetilO

KetilO

Hi dancho

Works as it should here.
Did you add the extra.inc file to your project?

KetilO

dancho

Quote from: KetilO on October 06, 2010, 10:31:35 AM
Hi dancho

Works as it should here.
Did you add the extra.inc file to your project?

KetilO

ah silly me  :red,
I thought it would be enough just to add include 'extra.inc' to main asm file ,
adding to the project wasn't on my check list...
Now works ok...
sorry to trouble you with this KetilO
thx

Dancho

donkey

Hi Ketil,

Noticed something with the F3 search. Select a word using double-click and press F3. On the dialog that appears click "Find", RadASM will find the original instance of the word, press "Find" again and it gives you the "region searched" dialog. Also if you then select a different word it will continue the search for the first word each time you press the F3 key. I'm not sure if this is by design.
"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

jcfuller

Ketil,
Is there any way to have functions and subs show up in the code window that have a preceeding qualifire as in:

CALLBACK FUNCTION MyCallBack()
END FUNCTION

exposed function()
End Function

exposed sub()
End Sub

James