The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: KetilO on May 03, 2007, 05:42:06 PM

Title: Sources for RadASM 2.2.1.1 uploaded
Post by: KetilO on May 03, 2007, 05:42:06 PM
Get it here:

http://www.radasm.com/Upload/RadASM2211.zip

Or here:

http://www.assembler.ca/radasm/Upload/RadASM2211.zip

KetilO
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: BogdanOntanu on May 03, 2007, 06:47:26 PM
That is unbelievable but true ;)

Thank you very much!

... using RADASM to edit RAD ASM source code is the definition of fun :)

However it expects:    include ..\..\..\Inc\RadAsm.inc inorder to build...

Now, does  this means that I have to solve my own bugs and implement my own requests? :)

I noticed some bugs related to code completion and Ctrl+Space listbox not being visible on dual / multiple monitors and huge projects like SOL_OS and SOL_ASm  and HE

I was going to report this....
But now I will have to find the bugs, solve them and send the update to you... ;)
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: drizz on May 03, 2007, 08:57:17 PM
This is great news!

Thank you very much KetilO.

Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: ramguru on May 03, 2007, 09:40:32 PM
I swear not to look at it  :U
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: donkey on May 04, 2007, 12:42:01 AM
Wow, what a great day I picked to pop in after a long while that I was too busy to visit the boards  :U

Not only are there some interesting questions that have accumulated over the last few months but Ketil releases his RadASM source code, all of those things that I kept scratching my head over and saying "I wonder how he made that run so fast" will be revealed !!!

Thanks so very much Ketil.

Edgar
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: Biterider on May 04, 2007, 02:07:13 PM
Wow, like Donkey said...  :U    but I hope you didn't give up this spectacular project...   

Biterider
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: ipadilla on May 04, 2007, 05:41:24 PM
Thank you Ketil,
Simply, you are one of the best...
ipadilla
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: rags on May 05, 2007, 11:32:24 AM
Thank you very much Ketil.

Rags
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: Petroizki on May 07, 2007, 07:22:51 AM
Hi, publishing the sources might be cool way of boosting the RadASM development. :8)

I tried compiling the sources, but there were four constants that I could not find (used by DllProc):
AIM_RCSAVED
RAM_RCSAVED
AIM_IMPORTED
RAM_IMPORTED
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: KetilO on May 07, 2007, 07:42:55 AM
Thanks Petroizki

This is the current RadASM.inc

KetilO

[attachment deleted by admin]
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: rags on May 07, 2007, 02:53:18 PM
I can't seem to download the source, or even access the Radasm website.
Anyone else having these problems?

Rags
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: ipadilla on May 07, 2007, 04:59:54 PM
Hi Rags,
Yes, I have the same problem from Saturday morning. You can visit this one
http://radasm.assembler.ca/
ipadilla
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: arjuns on May 07, 2007, 05:09:13 PM
same here  :(
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: KetilO on May 08, 2007, 11:17:22 AM
Mirror at:

http://www.assembler.ca/radasm/Upload/RadASM2211.zip

KetilO
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: denise_amiga on May 08, 2007, 01:50:50 PM
wow it is great news
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: arjuns on May 08, 2007, 06:11:51 PM
That's awesome
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: v38t6ugte on May 09, 2007, 09:26:04 AM
Thanks the SOURCE, to READING THE SOURCE!
Great the working!

I am chinese so don't carefuly read my pool words.

:U
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: masmgod on May 09, 2007, 04:46:43 PM
Thank you so much for releasing the source code

Unfortunately I have found a bug. the bug is as follows

on line 986 of ini\inifile.asm you have written

.if eax!=-1
invoke GetPrivateProfileString,addr iniWindow,addr iniFolderR,addr szNULL,addr iniBuffer, 64 ,addr iniFile
mov eax, sizeof iniBuffer

unfortunately in win32 the path can be up to 256 characters long you have set it at 64 if you change the above line to
invoke GetPrivateProfileString,addr iniWindow,addr iniFolderR,addr szNULL,addr iniBuffer, sizeof iniBuffer ,addr iniFile

the above bug is eradicated

by the way my path is C:\Documents and Settings\Kieron  Higgs\My Documents\visual studio projects\RadAsm Code\Debug

and this is what is in my radasm.ini

without this change it was recognising my path as C:\Documents and Settings\Kieron  Higgs\My Documents\visual stu


I hope this helps

Of course any more bugs and I will post them
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: masmgod on May 09, 2007, 05:11:39 PM
My apologies for the above  post I had inserted a bit of my own code in this was

mov eax, sizeof iniBuffer

it was put in for debugging this problem ( I wanted to know how big the iniBuffer was) sorry about the confusion



Regards


MasmGod
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: KetilO on May 09, 2007, 08:30:23 PM
Thanks masmgod

Note that this bug does not apply to normal use. It is only used while developing RadASM.

Tip:
Holding the cursor over the word iniBuffer will show its size in the info tool.

KetilO
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: KetilO on July 25, 2007, 11:43:57 AM
Sources for RadASM 2.2.1.2

Get it here:

http://www.radasm.com/Upload/RadASM2212.zip

Or here:

http://www.assembler.ca/radasm/Upload/RadASM2212.zip

KetilO
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: six_L on July 25, 2007, 12:20:51 PM
very very good.
thanks much much.
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: ostaith on July 29, 2007, 09:27:16 AM
 :dazzled:thanks a lot!!!
Title: Re: Sources for RadASM 2.2.1.1 uploaded
Post by: ipadilla on August 08, 2007, 11:09:04 AM
Thanks a lot KetilO.
Regards