| View previous topic :: View next topic |
| Author |
Message |
Stefano Bonifazi Guest
|
Posted: Wed Aug 03, 2005 3:37 pm Post subject: SAPI and BCB where is the BCB compatible lib? |
|
|
Hi all!
I'm trying to make SAPI working with BCB, of course the matter is with the
Microsoft sapi.lib that's a COFF ...
I read in an old post that Mr. Gambit offered some web space for the BCB
version of that lib, but that site seems to be down now
Where can I download it from now?
Thank You very much in advance!
Stefano B.
|
|
| Back to top |
|
 |
Mike Harris Guest
|
Posted: Wed Aug 03, 2005 4:34 pm Post subject: Re: SAPI and BCB where is the BCB compatible lib? |
|
|
try these setps...
1 ) import type lib.
Type Lib: C:Program FilesCommon FilesMicrosoft SharedSpeechsapi.dll
2 ) #include "resulting_TLB.h"
please do not cretique. it is sample code
3 )
namespace { // anon
ISpeechVoicePtr VoicePtr;
SpeechVoiceSpeakFlags eSpeechVoiceSpeakFlags = SVSFDefault;
};
4 ) Button1Click(TObject *Sender)
{
if (!VoicePtr)
VoicePtr = CoSpVoice::Create();
if (!VoicePtr) return;
VoicePtr->Speak(WideString("Hello world"), eSpeechVoiceSpeakFlags);
}
"Stefano Bonifazi" <stefboombastic (AT) libero (DOT) it> wrote
| Quote: | Hi all!
I'm trying to make SAPI working with BCB, of course the matter is with the
Microsoft sapi.lib that's a COFF ...
|
|
|
| Back to top |
|
 |
Darko Miletic Guest
|
Posted: Wed Aug 03, 2005 4:45 pm Post subject: Re: SAPI and BCB where is the BCB compatible lib? |
|
|
Stefano Bonifazi wrote:
| Quote: | Hi all!
I'm trying to make SAPI working with BCB, of course the matter is with the
Microsoft sapi.lib that's a COFF ...
I read in an old post that Mr. Gambit offered some web space for the BCB
version of that lib, but that site seems to be down now
Where can I download it from now?
Thank You very much in advance!
Stefano B.
|
Have you tried this link:
http://makefiles.lebeausoftware.org/
Darko
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Wed Aug 03, 2005 5:52 pm Post subject: Re: SAPI and BCB where is the BCB compatible lib? |
|
|
"Stefano Bonifazi" <stefboombastic (AT) libero (DOT) it> wrote
| Quote: | I read in an old post that Mr. Gambit offered some web space
for the BCB version of that lib, but that site seems to be down now
|
Works fine for me:
http://makefiles.lebeausoftware.org
Gambit
|
|
| Back to top |
|
 |
Mike Harris Guest
|
Posted: Wed Aug 03, 2005 7:10 pm Post subject: Re: SAPI and BCB where is the BCB compatible lib? |
|
|
nice.. when did you do that ?
"Remy Lebeau (TeamB)" > Works fine for me:
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Wed Aug 03, 2005 7:55 pm Post subject: Re: SAPI and BCB where is the BCB compatible lib? |
|
|
"Mike Harris" <nospam (AT) nospam (DOT) com> wrote
| Quote: | nice.. when did you do that ?
|
The site itself has been online for 5 years, and that particular page has
been online for 3 years.
Gambit
|
|
| Back to top |
|
 |
Mike Harris Guest
|
Posted: Thu Aug 04, 2005 12:18 am Post subject: Re: SAPI and BCB where is the BCB compatible lib? |
|
|
so I don't get out much <g>
"Remy Lebeau (TeamB)"wrote in message
news:42f1214c$1 (AT) newsgroups (DOT) borland.com...
| Quote: |
The site itself has been online for 5 years, and that particular page has
been online for 3 years.
Gambit
|
|
|
| Back to top |
|
 |
Stefano Bonifazi Guest
|
Posted: Thu Aug 04, 2005 6:40 am Post subject: Re: SAPI and BCB where is the BCB compatible lib? |
|
|
That's works fine for me too, the address I found was not that!
Thank You Mr. Gambit
"Remy Lebeau (TeamB)" <no.spam (AT) no (DOT) spam.com> ha scritto nel messaggio
news:42f1045a$1 (AT) newsgroups (DOT) borland.com...
| Quote: |
"Stefano Bonifazi" <stefboombastic (AT) libero (DOT) it> wrote in message
news:42f0e4ac$1 (AT) newsgroups (DOT) borland.com...
I read in an old post that Mr. Gambit offered some web space
for the BCB version of that lib, but that site seems to be down now :(
Works fine for me:
http://makefiles.lebeausoftware.org
Gambit
|
|
|
| Back to top |
|
 |
Stefano Bonifazi Guest
|
Posted: Thu Aug 04, 2005 6:41 am Post subject: Re: SAPI and BCB where is the BCB compatible lib? |
|
|
Thank You, a valid alternative I suppose!
Regards,
Stefano B.
"Mike Harris" <nospam (AT) nospam (DOT) com> ha scritto nel messaggio
news:42f0f217$1 (AT) newsgroups (DOT) borland.com...
| Quote: | try these setps...
1 ) import type lib.
Type Lib: C:Program FilesCommon FilesMicrosoft SharedSpeechsapi.dll
2 ) #include "resulting_TLB.h"
please do not cretique. it is sample code
3 )
namespace { // anon
ISpeechVoicePtr VoicePtr;
SpeechVoiceSpeakFlags eSpeechVoiceSpeakFlags = SVSFDefault;
};
4 ) Button1Click(TObject *Sender)
{
if (!VoicePtr)
VoicePtr = CoSpVoice::Create();
if (!VoicePtr) return;
VoicePtr->Speak(WideString("Hello world"), eSpeechVoiceSpeakFlags);
}
"Stefano Bonifazi" <stefboombastic (AT) libero (DOT) it> wrote in message
news:42f0e4ac$1 (AT) newsgroups (DOT) borland.com...
Hi all!
I'm trying to make SAPI working with BCB, of course the matter is with
the Microsoft sapi.lib that's a COFF ...
|
|
|
| Back to top |
|
 |
|