The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: trodon on August 22, 2006, 09:12:36 PM

Title: Put text to EditBox
Post by: trodon on August 22, 2006, 09:12:36 PM
Can someone explain me how to change or add some text in edit box, when push button.
for example attached file?
thanks

[attachment deleted by admin]
Title: Re: Put text to EditBox
Post by: drizz on August 23, 2006, 12:17:50 AM
modify it like this:

.elseif eax==WM_COMMAND
;; USE MENU: Tools->Export ID Equ's (Ctrl+F11) !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
;; and put equs in the inc file
IDC_BTN1 equ 1001
IDC_EDT2 equ 1002
movzx eax,word ptr wParam[0]; get LOWORD of wParam
movzx edx,word ptr wParam[2]; get HIWORD of wParam
.if edx == BN_CLICKED; is button clicked?
.if eax == IDC_BTN1; is it button 1?
;; set your text...
invoke SetDlgItemText,hWin,IDC_EDT2,addr Text4EditBox
.endif
.endif
Title: Re: Put text to EditBox
Post by: trodon on August 23, 2006, 12:48:50 AM
thanks drizz its working  :U