News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Radasm3 Question

Started by ragdog, March 17, 2016, 05:01:59 AM

Previous topic - Next topic

ragdog

Hello Ketilo

In Radasm3 is a missing function
If i use Radasm reseditor adn set controls send to back or send to front works fine
after i reload my project is it wrong i must new set the controls back or front.

I have test Radasm2 this works

A other test in radasm 3 change i  controls the Rc file manuelly up IDC_button



#define IDC_BTN2 1001
#define IDC_GRP2 1002



#define IDC_GRP2 1002
#define IDC_BTN2 1001



This works,

Is this a Bug?

KetilO

Hi

No, it's not a bug. Send to back / Bring to front solves a design problem when controls overlap each other.
To permanently change the Z order, set the controls tabindex.

KetilO

ragdog

Thanks for you reply

QuoteTo permanently change the Z order, set the controls tabindex.

Mean you the tabindex number of the control?

I have try it an after i reload my project is the control what i have Send to back again Front

In Radasm2  change you the position of control Id´s

from
#define IDC_BTN2 1001
#define IDC_GRP2 1002

to


#define IDC_GRP2 1002
#define IDC_BTN2 1001

This problem is only i reload my Project in Radasm3