Author Topic: Little modificacions to RadASM30  (Read 6952 times)

HSE

  • Member
  • *****
  • Posts: 2463
  • AMD 7-32 / i3 10-64
Little modificacions to RadASM30
« on: January 31, 2017, 04:16:21 AM »
Hi!!

Just playing with little modificacions:
- system background color for menu (a critical problem in the dark machine)
- semiautomatic resize of tabtool (if multiline activated)
- Ragdog correction to Static.

Take care to change original RadASM.exe name before replace.   


Regards.  HSE

updated a problem observed by Ragdog (http://masm32.com/board/index.php?topic=7380.msg83244#msg83244).
« Last Edit: April 09, 2020, 08:39:28 AM by HSE »
Equations in Assembly: SmplMath

ragdog

  • Member
  • ****
  • Posts: 609
Re: Little modificacions to RadASM30
« Reply #1 on: February 03, 2017, 07:42:40 AM »
Hi

Quote
system background color for menu (a critical problem in the dark machine)
YOu hardcode the dark color ?

Why use you not the Masm.ini to chnage your color.

HSE

  • Member
  • *****
  • Posts: 2463
  • AMD 7-32 / i3 10-64
Re: Little modificacions to RadASM30
« Reply #2 on: February 03, 2017, 11:44:52 AM »
KetilO hardcode an almost white background menu color and some ligth blue for active item . I have changed only background by menu system color.

Masm.ini only change sintax colors.
Equations in Assembly: SmplMath

bluedevil

  • Member
  • **
  • Posts: 204
  • Binary Grinder
    • SCTZine
Re: Little modificacions to RadASM30
« Reply #3 on: May 06, 2017, 10:09:50 PM »
- system background color for menu (a critical problem in the dark machine)
Hello
Is is possible to share a screenshot of this dark radasm?
Thanks :)
..Dreams make the future
But the past never lies..
BlueDeviL // SCT
My Code Site:
BlueDeviL Github

HSE

  • Member
  • *****
  • Posts: 2463
  • AMD 7-32 / i3 10-64
Re: Little modificacions to RadASM30
« Reply #4 on: May 07, 2017, 02:38:15 AM »
Hi Blue Devil!

I'm today in the clear machine :biggrin:, and I can't capture menu because it close when RadAsm lost focus.

There is no dark RadAsm, only system colors are dark in other machine.
 
Just replace in RadAsm.asm:
Code: [Select]
invoke MakeBitMap,19,0FFCEBEh,0FFFFFFh
by
Code: [Select]
invoke GetSysColor, COLOR_MENU ; hse 28/01/17
invoke MakeBitMap,19, 0FFCEBEh, eax
Equations in Assembly: SmplMath