Hello,
I have the next problem,
I want my turbo c++ explorer program are able to speech text.
I download all SAPI and I know that the funtion for text to speak are in the library VText.dll.
How I must configure the program to access this functions?

I'm assuming you mean this snazzy new version - http://www.turboexplorer.com/
and not the crusty fossil Turbo C++ from 15 to 20 years ago.

There are 3 things you usually have to configure (one if you're lucky)
- the include path - this is where vtext.h is located. If it's in a standard place, there's nothing to do.
- the library path - this is where vtext.dll is located. If it's in a standard place, there's nothing to do.
- the library name - this is vtext.dll, and you need to say so.

In common with nearly every other IDE out there, I imagine there are some project settings for the compiler and linker which allow these things to be set up.

So I would suggest you start by looking for something along the lines of "project settings".

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.