1
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <iostream>
#include <fstream>
main(){
int i, k=0;
//while(1){
char prova[9]="20:00:00";
char timeStr [9];
_strtime(timeStr);
//printf("The current time is %s \n", timeStr);
for(i=0;i<9;i++){
if(prova[i]!=timeStr[i])
k=1;
}
if(k=1){
system("C:\>tskill xlview");
system("C:\>start "" Programas\\Microsoft Office\\Office12\\xlview.exe" "c:\teste.xls");
}
//main();
}
/我打算做一個程序,關閉然後打開一個excel查看器文件,每天在某個小時。我知道如何執行shell命令,但我使用的路徑不工作/如何使用C++打開excel查看器文件?
英文句子以大寫字母開頭。 – peterh