Hallo an alle,
ich habe ein kleines Problem
wie kann ich zwei Strings mit eineander Verketten ?
invoke GetWindowText,hwndEdit_1,ADDR buffer_1,512
invoke GetWindowText,hwndEdit_2,ADDR buffer_2,512
in buffer_3 soll buffer_1 + buffer_2
wie geht das ?
Gruss Harald
addr String + addr String
Moderatoren: crack, Krüsty, Marwin
masm32 v8
du musst die masm32.lib und masm32.inc einbinden:
du musst die masm32.lib und masm32.inc einbinden:
szCatStr
szCatStr proc lpszSource:DWORD, lpszAdd:DWORD
Description
szCatStr appends the second zero terminated string (lpszAdd) to the end of the first zero tereminated string (lpszSource). The result is zero terminated.
Parameters
1. lpszSource The address of the source string to be appended to.
2. lpszAdd The address of the string to append to lpszSource.
Return Value
There is no return value.