No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
I have been trying to design an application where I need to set the focus from my application to the last application eg word powerpoint excel etc and then to paste in some information to that application. I think that I should be using enumerate windows or get lastwindow functions … | |
Re: try the following, to count the number of letters in a particular line(0) [code][procedure TForm1.Button1Click(Sender: TObject); var a:Integer; begin a:=length(Memo1.Lines[0]); label1.Caption:=IntToStr(a); end;] or to count the number of total letters (in fact characters) [procedure TForm1.Button1Click(Sender: TObject); var a,b,c:Integer; begin a:=length(Memo1.Lines[0]); label1.Caption:= IntToStr(length(Memo1.Lines.Text)) ; end;][/code] | |
Re: Here is a list of key stroke codes VK_LBUTTON Left mouse button VK_RBUTTON Right mouse button VK_CANCEL Control+Break VK_MBUTTON Middle mouse button VK_BACK Backspace key VK_TAB Tab key VK_CLEAR Clear key VK_RETURN Enter key VK_SHIFT Shift key VK_CONTROL Ctrl key VK_MENU Alt key VK_PAUSE Pause key VK_CAPITAL Caps Lock key … | |
Hello folks and greetings, I have been working on a program that inputs foreign accents into MSword. I have been trying to extend this so that it will input into the last app, be it publisher powerpoint excel , notepad etc. What I am looking for, then, is help with … |
The End.