Hi!
I need to open a pdf file (I used system("file_name.pdf"), and it worked). Next is that I want to copy complete content of the file (I want to execute ctrl+a). I want to give this command through my C program, then I will get the content of the windows clipboard having all the copied content.
Please help me regarding this. (C/C++/VC, all solutions acceptable)
Thank you in advance.

#include <stdlib.h>
#include <stdio.h>

int main(){
/* opening a file */
system("results.pdf");

///////////////////////////////////////////////////////
/////copy the content in file (execute ctrl+a)/////
////// ------------------------------------- ////
///////////////////////////////////////////////////////

return 0;
}