if you are familiar with api routines you can use them to get to your point...
all you need is to get handle of the object on a window and get message from that handle...
if you want some tutorials I can provide...
OSP
Hi!
first you should make access to that application that you want to miximize or something else....
to do this you should get the handle of that application's window....
to get the handle you can use several functions, but I think the easier one is FindWindowByTitle =>...
Hi!
I think you can find an appropriate component that supports Caller ID Capture here =>
http://www.torry.net/quicksearchd.php?String=caller+id&Exact=Yes&Title=No
OSP
Hi!
These pages may help you =>
http://www.experts-exchange.com/Operating_Systems/WinXP/Q_21512401.html?qid=21512401
http://www.short-media.com/forum/showthread.php?t=20392
OSP
Hi!
Multi Ports Sniffer for COM LPT USB. v.3.0.2
By Alexey Zaharov. The best tool for doing LPT, COM and USB port's data transfer logging. Using this tool you can simply do monitoring and spying data transffered through ports. This is useful for people who want to research any additional HW...
Hi!
var
n:integer;
s:tsearchrec;
k:tstrings;
begin
n := findfirst('c:\*.mp3',faanyfile,s);
if n=0 then begin
listbox1.items.Add(s.Name);
repeat
n := findnext(s);
if n = 0 then listbox1.items.Add(s.Name);
until n<>0;
end;
n := findfirst('c:\*.wav',faanyfile,s);
if n=0 then begin...
Hey!
var
s: string; { main string }
ss: string; { temp string }
n: integer;
Number: integer;
n := pos('value=',s); { get the index val }
ss := copy(s,n,10); { ss='value=xxxx' }
{value=xxxx extracted to ss}
{by the way for example ss can be 'value=1000' or 'value=78 <' because copy function...
Hi!
It's so easy...
You can use Delete Procedure as below =>
/********************************************
procedure Delete(var S: string; Index, Count:Integer);
Removes a substring from a string.
/********************************************
var
s: string;
num: integer;
{ S='value=78' }...
Hello!
Here Is INT 16 Scan Codes =>
http://www.iro.umontreal.ca/~feeley/cours/ift2240/doc/assembly/scancodes.html
Use These Scan Codes INT 16,00.
Best Regards...
OSProgrammer
1. WHAT IS MACHINE LANGUAGE?
Although programmers tend to use C or C++ or Pascal these days, the
language closest to the PC hardware is machine language. Not one second
during a PCS powered on lifetime passes where the computer is not
executing machine language.
2. ASSEMBLY LANGUAGE...
Hello!
When You Make an EXE File Under Windows Programmings Like Delphi Or Visual Basic, The Files At Least Become 500KB. So If You Disassemble It, You Will See Thousands Of Assembly Code Lines. Because They Have a Lot Of Instructions.
But If You Make a BIG Program With Assembly Under Real...
Hello!
If You Want To Make a Bootable Floppy Disk (Or Your Own OS) Emu8086 Assembler Software Provide a Good And Tiny Tutorial For Creating OS.
+ Emu8086 Is a Compiler Too.
Download It From => www.emu8086.com
Best Regards...
OSProgrammer
Hi syskplim!
DS is called data segment register. It points to the segment of the data used by the running program. You can point this to anywhere you want as long as it contains the desired data. ES is called extra segment register. It is usually used with DI and doing pointers things. The...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.