如何将编辑框转换为数字汇编?

时间:2019-05-25 16:36:31

标签: winapi assembly x86 tasm

在TASM for Win32中,我有以下代码:

;------- Edit1 Create ----------------
push    L 0
push    [hInstEdit1]
push    idEdit1
push    [newhwnd]
push    L 20
push    L 200
push    L 50
push    L 130
push    L WS_CHILD+WS_VISIBLE+WS_BORDER+ES_LEFT+ES_NOHIDESEL+ES_AUTOHSCROLL
push    L 0
push    offset EClassName
push    L 0
call    CreateWindowEx
mov [hEdit1],EAX

push    L SW_SHOW
push    [hEdit1]
call    ShowWindow
push    [hEdit1]
call    UpdateWindow

我需要获取用户在此编辑框中输入的号码。 该号码必须放在寄存器中。 谁知道该怎么做?

PS,我认为您需要使用功能GetDlgItemInt

1 个答案:

答案 0 :(得分:0)

这是在互联网上找到的方式

                            ; Input:
    mov esi, offset szMsg1  ; esi - str
    dec msgLength           
    mov ecx, msgLength      ; ecx - length str
                            ; Output:
                            ; EAX = integer value
string_to_int:
    xor ebx,ebx             ; clear ebx
next_digit:
    movzx eax, byte ptr [esi]
    inc esi
    sub al,'0'              ; convert from ASCII to number
    imul ebx,10
    add ebx,eax             ; ebx = ebx*10 + eax
    loop next_digit         ; while (--ecx)
    mov eax,ebx