About a time event
-
I have a thought to make the speaker to speak at a special time. That is: 1.Set RTC timer alert time at a special time; 2.Then the RTC timer triggers the speaker to speak. This action can be done by Api functions "CreateTimer" and "OnTimer". But I don't want to use this way, how to do it? I use VC6.0 Thanks in advance!
-
I have a thought to make the speaker to speak at a special time. That is: 1.Set RTC timer alert time at a special time; 2.Then the RTC timer triggers the speaker to speak. This action can be done by Api functions "CreateTimer" and "OnTimer". But I don't want to use this way, how to do it? I use VC6.0 Thanks in advance!
shalala wrote: This action can be done by Api functions "CreateTimer" and "OnTimer". But I don't want to use this way, how to do it? Use the shell to start a batch-file at your specific time?
Who is 'General Failure'? And why is he reading my harddisk?!?
-
shalala wrote: This action can be done by Api functions "CreateTimer" and "OnTimer". But I don't want to use this way, how to do it? Use the shell to start a batch-file at your specific time?
Who is 'General Failure'? And why is he reading my harddisk?!?
:) can you tell me more details or even some samples? Thanks
-
:) can you tell me more details or even some samples? Thanks
Well, you simply need to get a batch-file to do what you want (e.g. reading a text or playing a *.wav). Then you can use "scheduled task" to start that .cmd at the time you want. Please read the help about scheduled tasks, as I am no expert, just a user.
Who is 'General Failure'? And why is he reading my harddisk?!?
-
Well, you simply need to get a batch-file to do what you want (e.g. reading a text or playing a *.wav). Then you can use "scheduled task" to start that .cmd at the time you want. Please read the help about scheduled tasks, as I am no expert, just a user.
Who is 'General Failure'? And why is he reading my harddisk?!?
Could somebody tell me how to call the shell function in vc6? Thank you again
-
Could somebody tell me how to call the shell function in vc6? Thank you again
ShellExecute(...) Cheers, Fredrik
"Felix qui potuit rerum cognoscere causas." -
ShellExecute(...) Cheers, Fredrik
"Felix qui potuit rerum cognoscere causas."I have a try. Thank you!!!