Hai I am developing Sms Project in vb.net.I can Send and receive Sms Easily. I can attented Incoming call and dial. but not hearing and talk. I connected with com Port. This is possible or not for talking and hearing. please tell me
Without knowing the GSM modem you are using it's kind of difficult to give you any help.
Just to make sure. You have a handset connected to your modem, right? Some modems, like for example the Siemens TC35, require the use of a handset to hear and talk.
For Windows programming I suggest looking into the TAPI (Telephony API) library which does this. For Windows Mobile/CE (maybe other Windows versions as well?) there is also the RIL (Radio Interface Layer) which is a bit more low-level than TAPI and less documented. TAPI is documented in MSDN, but it is still a bit difficult to use.
If you can get a direct connection to the GSM modem for example via a COM (serial) port then you could also make a phone call using standard AT-commands. The command for dialing a number is "D" so "ATD555-12345678;" will make a voice call to 555-12345678. Skipping the ";" will set up a data call. Find the COM-port used by your GSM modem and send "AT\r" and check if you get a "OK" response. If you do, that's your modem.