How can we send and receive voice in same program

Please can any one suggest me how to send and receive voice in the same program. I want both AVTransmit & AVReceive in the same program i tried it but its too difficult to do it.. Any one has got that code? And also i want my program to know if any third person is wanting to call me.. I mean how to recognise a new call. Please relpy to the following mail id.. Please i need it urgently..
[email protected]

Sir please execute this code.
printf("I need it ");
for(i=0;i<=infinity;i++)
printf("V E R Y ");
printf("U r g e n t");
Now Please Send it to me sir.Please..Does not compile!

Similar Messages

  • On my iPad I can only send email and messages to apple products.how can I send and receive from other devices other than Apple?

    On my iPad I can only send email and messages to apple products.how can I send and receive from other devices other than Apple?

    Vallakat wrote:
    On my iPad I can only send email and messages to apple products.
    There is a huge difference between sending email and sending messages.
    Yes, I believe you when you say you can only send messages to other Apple products.  The iPad is not a telephone, and therefore, it cannot text message.  It can only iMessage, which means it can send and receive messages to/from other Apple products if they are on WiFi or an iMessage capable cellular network.
    Email, however, is a whole different category.  I don't really think you can only exchange email with other Apple products only.  Make sure you have correctly identified the symptoms.

  • How can i send and receive messages through CAN

    Hi,
    how can i send and receive messages using Vector CAN CARDXL

    As mentioned in this forum post, if you have a dll, this can easily be called from LabVIEW or CVI.
    I also went to the vector website and it does look like they have LabVIEW drivers available for download.
    Peter Flores
    Applications Engineer

  • How can I send and receive a message as an SMS?

    I just got an iPhone 4S, an it's completely updated. I can send iMessages just fine when I am connected to wifi at home. I can't send an SMS at all, Cellular data or wifi. It shows that it's sent as an SMS(it's green and it says it's sent), but the receiver never receives it. Apparently they can't send an SMS to me either. It shows on their phone that it's sent, but I never receive it. Do I have to have my cellular data turned on to recieve an SMS? Even with it on, it doesn't work.

    Hi,
    You can get quite simple standalone MQ Java programs from this site http://www.capitalware.biz/mq_code_java.html.
    Also regarding the jars required for your application depends on the API being used. If you use MQI API few jars are required and if you decide to use JMS API you'll require few other jars. But you got to either install Websphere MQ Java Client, which will copy the jars to the respective location, or you can choose to copy the jars from some other machine manually.
    Eventually, all the jars related to MQI and JMS API will reside under /usr/mqm/java/lib/ or /var/mqm/java/lib/ UNIX Environment. And in case of WINTEL, you should find the jars under C:\Program Files\IBM\WebSphere MQ\Java\lib.
    Trust it clarifies...
    Naren

  • How can I send and receive a message from  a queue using standalone program

    Hi,
    I want to write a standalone Java program which has to post a message to a queue and receive a message from a queue thats specified as a replyto queue.I want to have my application to be completely standalone without the need of a Application server.What all the Jars do I need to include in the application.My aim is to have the application standalone and portable so that the application runs on any machine that has a JRE.
    Thanks in advance,
    Prathima

    Hi,
    You can get quite simple standalone MQ Java programs from this site http://www.capitalware.biz/mq_code_java.html.
    Also regarding the jars required for your application depends on the API being used. If you use MQI API few jars are required and if you decide to use JMS API you'll require few other jars. But you got to either install Websphere MQ Java Client, which will copy the jars to the respective location, or you can choose to copy the jars from some other machine manually.
    Eventually, all the jars related to MQI and JMS API will reside under /usr/mqm/java/lib/ or /var/mqm/java/lib/ UNIX Environment. And in case of WINTEL, you should find the jars under C:\Program Files\IBM\WebSphere MQ\Java\lib.
    Trust it clarifies...
    Naren

  • How can i send and receive a 2us digital pulse from Labview

    i want to communicate with a system using 2us pulse
    like if i want to send 11010100 then i will send
    |----2US----|----2US----|.............
    I      I___I       I_____________I         I______________I         I_______________________
    |----1-----|-------1-------|------0-------|--------1--------|------0-------|---------1---------|------0-------|------0-------|
    when i will send 11010100 to system the system will repond me by sending 10111001 usinf same 2us pulse as i have shown above.
    I have pci-6025E+CB 50LP connector block+Cable and LABVIEW 10 installed in my PC.
    Can this be done using NI's labview and PCI card ?
    if yes then how ?
    i m new to NI and this is my first Project using NI's hardware.

    The fastest I would trust software timing is in the tens of milliseconds.  And even then, don't count on exactness.  The software timed DIO are best used for static applications (only change every once in awhile, usually controlling a relay or the like).  From my quick search, you will want something like the PCI-6220.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • HT3529 How can i send and receive text messages with pictures?

    The camera button on the text screen won't let me send pictures. And I also can't recieve pictures.

    http://support.apple.com/kb/ts2755

  • How can i send and receive packets ???

    pls help....

    sonji03 wrote:
    for TCP packets... You mean using normal sockets? Read the networking tutorial. It's a good start.
    Kaj

  • Can't send and receive on the same port

    Hello,
    I have a socket client which send a message to serverSocket then it should wait for a response.
    The problem I have is that the client send the message but when it tries to open a connection as socketserver on the same port it can't , a have this ERROR CannotGetConnectToTheHost
    this is the code of my client :
    try {
    echoSocket = new Socket("localhost", 3001);
    out = new PrintWriter(echoSocket.getOutputStream(), true);
    out.println(hdr + testContent );
    echoSocket.getInputStream()));
    } catch (UnknownHostException e) {
              System.err.println("Don't know about host: localhost.");
              System.exit(1);
    } catch (IOException e) {
         System.err.println(
              "Couldn't get I/O for "
         + "the connection to: USE host : "
              + e.toString());
              System.exit(1);
         out.close();
         echoSocket.close();
    int compteur = 0;
    try {
    ServerSocket oreille = new ServerSocket(4001);
    Socket socket = (Socket)null;
    System.out.println("Ready to accept connections");
    while (true) {
         socket = oreille.accept();
         System.out.println("\n Nouveau message r�ceptionn� :\n");
         InputStream entree = socket.getInputStream();
         int c;
         String msgAdh = "";
         while ((c = entree.read()) != -1) {
         msgAdh += (char) c; //lecture byte par byte
         compteur++;
         System.out.println("Ready to accept Another Message ");
         entree.close();
         socket.close();
         oreille.close();
    } catch (IOException e) {
    System.out.println("CannotGetConnectToTheHost");
    thinks in advance

    When printing out an exception, print the exception object too, e.g.System.out.println("..whatever...:" + e); It almost always contains useful information. For extra credit, print out the stack trace too.
    If I understand correctly what the program does:
        while (true) {
            socket = oreille.accept();
            oreille.close();
        }That can't be right: after the first loop, you close the socket, and then try to use it again on the second loop. If you want to keep using a socket, keep it open.

  • How can i send and recieve mail through java

    HI All,
    plz let me know how can i send and receive mail through java.
    Regards:
    sachin kakkar
    http://www.datamansoftwares.com

    Using java mail API..
    try to search the forum for java mail... you find many question and answer.
    use the left search textfield

  • How do I send and receive email with my @me email account

    I want to drop yahoo as my email provider, so how do I send and receive email using my @me account.  Using yahoo, you go to yahoo, then mail and your good to go. I'm not a tech expert and fairly new to apple products and would like the improved security of an apple address.

    Hi stephraerae,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    iOS: Adding an email account
    http://support.apple.com/kb/ht4810
    iCloud is one of the options you can choose for your email provider.
    iCloud: Set up iCloud Mail on your devices
    http://support.apple.com/kb/PH2621
    This article includes the specific iCloud server settings:
    iCloud: Mail server information
    http://support.apple.com/kb/HT4864
    Hope that helps ...
    - Judy

  • Help!!! My text application on Blackberry Torch 9800 disappeared!!! I can't send and receive texts :-(

    Hi everyone,
    I need your help!!!
    The application to send and receive text does not appear on my phone Blackberry 9800 anymore... So, I can't send and receive texts...
    I tried lots of things but the problem is still existing.
    I have one error message everytime I turn on and reset the phone: "Uncaught exception: Index 14 >= 14" !!!
    Any idea of what to do???
    Thanks
    Rachel

    Hi and Welcome to the Community!!
    There's pretty much no diagnosing those -- they are the equivalent of the random errors in Windows for which tracing the root cause is fruitless. Basically, these are the last out in the programming code -- some event occurred for which there is no handler in the code. The fix is a code update that handles the event...but, again, knowing what the event is is pretty much impossible. So, there are a few things to try:
    Sometimes, the code simply becomes corrupt and needs to be refreshed -- just like a reboot:
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    If it won't boot up cleanly, then you may need to try Safe Mode:
    KB17877 How to start a BlackBerry smartphone in safe mode
    There might be an updated code set from the carrier -- check them via this portal:
     http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    The toughest possible cause is a badly behaving app. To find it, there are a couple of options. One is to see if you can read the log file:
    Go to the home screen. Hold down the "alt" key and type 'lglg'. (You will not see anything while you type).This will bring up the log file. Scroll down (probably many pages) untill you see a line that says 'uncaught execption'. Click on this line. The name of the app will be in the info. Alternative methods for bringing up the logs are in this KB:
    KB05349How to enable, access, and extract the event logs on a BlackBerry smartphone
    The other method is to remove apps one at a time, waiting a while in between (I usually recommend a week), until the problem ceases...thereby discovering the offending app. Still another method is to reload the BB OS cleanly, leaving some time between adding other apps onto the BB so as to be able to determine exactly which one is the cause.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can you send and receive Fax`s with Firefox?

    Can you send and receive Fax`s with Firefox? If so how do you do it?

    Hi invariance,
    Your printer supports eFax only, not analog faxing. To eFax, you will need to go through the registration process from the front panel of the printer. This will give you 20 faxes per month for free. If additional faxing is needed, you will need to cantact eFax and set up an account. There will be a fee for additional faxing capabilities.
    I was an HP employee.
    Reminder: Please select the "Accept as Solution" button on the post that best answers your question. Also, you may select the "Kudos" button on any helpful post to give that person a quick thanks.

  • How can I send out a voice memo by iphone 6 plus?

    How can I send out a voice memo to my friend? the voice memo last around 1.5 hours.  I tried to sent by email but not success.
    Pls. help.

    It is not Family Sharing - it is Continuity. Go to Settings>FaceTime>Cellular Calls, turn them off.
    Cheers,
    GB

  • Can IDoc sender and receive system be the same client?

    thanks.
    I think one client can't assign to two logical system.so?

    <i>Can IDoc sender and receive system be the same client?</i>
    yes
    Regards,
    Prateek

Maybe you are looking for

  • How to move the root to subfolder in Dreamweaver?

    Hi, I am wondering how I can move an entire php site to a subfolder? www.site-a.com --> www.mysite.com/site-a/ www.site-b.com --> www.mysite.com/site-b/ www.site-c.com --> www.mysite.com/site-c/ www.site-d.com --> www.mysite.com/site-d/ So when peopl

  • How to Disable Conversations in Mail

    I NEVER want to see any email in conversations view; I only want to see 1 email at a time. Even though, in Yosemite Mail, I have unchecked all "view conversations" options in Mail Preferences, I am still seeing conversations when I click on a specifi

  • How to reverse the layout from LTR to RTL?

    Hi, How to reverse the layout from (left to right) to (right to left)? Note: (Select All --> Object menu --> Transform --> Reflect) is useful, but it will reflect all texts. Thank you.

  • Why do I get different tag icon combinations?

    This is really bugging me and I can't fing an answer anwhere.  I've just started organizing my photos by adding albums and keyword tags. I add the album to all the pictures and get a green album icon on the thumnail.  Then for most of the images when

  • Email account name changes automatically?

    Hi guys I use the email software from Apple (the blue stamp icon) for all of my email accounts. Today, one of my clients told me that one day he received an email from my work mailaddress but my name in the inbox mails list (which should be "Bob Merm