Adding an About Box

Started by HellOfMice, December 06, 2024, 02:34:40 AM

Previous topic - Next topic

HellOfMice

It is not too difficult. Just look
                            .Data

szAppName                   BYTE    "Application Title",0

                            ALIGN   4

szOtherStuff                BYTE    "Philippe RIO",10,13,"Mathenay, France",0   ; It's me

                            ALIGN   4
;   ===========================================================================================
;   ===========================================================================================
                            ALIGN   16
@About :
                            mov     rdx,OFFSET szAppName
                            mov     r8,OFFSET szOtherStuff
                            xor     r9d,r9d
                            mov     rax,OFFSET @Eoj
                            push    rax
                            jmp     ShellAboutA
;   ===========================================================================================
;   ===========================================================================================
                            ALIGN   16
@Eoj :


I hate this editor!

Vortex

Hi Philippe,

A traditional message box can do the job too.
Code it... That's all...