uh!! its working fine.. but too much big
and i cant replace Characters
eg. if m -> Ma
ma -> something else..
but i solve it with a simple logik
var meinText ='';
var VK_0 ='';
OnEvent_ChatWndEditKeyDown(ChatWnd,KeyCode)
{
VK_0 = 32;
meinText = ChatWnd.EditText;
If (KeyCode == VK_0) // if i press space the word will be replaced
{
meinText = meinText.Replace...............ect;
ChatWnd.EditText = Text;
}
}
it was 3'O Clock when i finished
thx a lot 4 all
gruß
Christian
PS: once more ques.. I'm Delphi user can i use Delphi Codes here???