Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for daycartes

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 …

Member Avatar for radu84
0
364
Member Avatar for Katrix36

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]

Member Avatar for daycartes
0
217
Member Avatar for Katrix36

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 …

Member Avatar for daycartes
0
393
Member Avatar for daycartes

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 …

0
62

The End.