04-06-2009, 05:42 PM
Macro
To create trigger, get item count repeatedly... I don't know other ways.
Two exe can share memory using shared memory functions - CreateFileMapping and other. Or using pipe functions. To send data to another exe that has a window, can be used message WM_COPYDATA. Read in MSDN library.
int w1=id(1 win("" "CabinetWClass")) ;;listview control in a folder window
int n=SendMessage(w1 LVM_GETITEMCOUNT 0 0)
out n
To create trigger, get item count repeatedly... I don't know other ways.
Two exe can share memory using shared memory functions - CreateFileMapping and other. Or using pipe functions. To send data to another exe that has a window, can be used message WM_COPYDATA. Read in MSDN library.