The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: RedXVII on May 09, 2006, 03:13:50 PM

Title: .if statement minimises
Post by: RedXVII on May 09, 2006, 03:13:50 PM
I find the plus to the left of my .if statments very handy in keeping things tidy!!

However, i cant find the option to just do the minimise on a single section between the .if and .elseif statement. It always minimises to the .endif, which is a tad annoying. My Wndproc looks like

.if eax==WM_CREATE
  blah
  blah
  blah
  blah
.elseif eax==WM_PAINT
  blah
  blah
  blah
  blah
.elseif eax==WM_LBUTTONDOWN
  blah
  blah
  blah
  blah
.endif

All i want to do is minimise the messy sections WM_CREATE and WM_LBUTTONDOWN while i work on the WM_PAINT, but the only option i see available is to do the whole thing from .if to .endif, or not at all.

Is what i want to do possible!!?

Cheers  :U
Title: Re: .if statement minimises
Post by: Ossa on May 09, 2006, 03:57:02 PM
Many moons ago it used to support that, but it has been removed in recent versions. I don't know why though, maybe KetilO can add it back in?

Ossa

[edit] *evil link coming up* It was originally introduced some time in mid-2003 - shortly after this post (http://www.asmcommunity.net/board/index.php?topic=14393.msg111401#msg111401) [/edit]
Title: Re: .if statement minimises
Post by: RedXVII on May 09, 2006, 09:35:38 PM
Please do!!  :U
Title: Re: .if statement minimises
Post by: KetilO on May 10, 2006, 03:48:49 PM
Hi

You can get RadASM 2.2.0.9 bugtest here: http://www.radasm.com/Upload/RadASM2209.zip

Ctrl+E can be used to expand inividual elseif blocks.

KetilO
Title: Re: .if statement minimises
Post by: BogdanOntanu on May 10, 2006, 04:54:27 PM
Wow :clap: