answersLogoWhite

0

In a pocket PC telephone you enter a comma sign to act as a pause.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is purpose of programming pause into a phone number?

You use this when you want to include an extension number, when you program it into the number for example (836) 254- 3215 P 8263 The phone will dial the extension after the call is answered, or when you push send or call.


What is a dialing pause?

In some cases when automatically dialing a number, you may need to tell the autodialer to pause to allow for a secondary dial tone. For example, if you dial '9' to get an outside line on your business phone system, you may need to program a pause after the 9 to allow time for the outside dial tone.


What is the phone number of the Orca Adoption Program in Friday Harbor Washington?

The phone number of the Orca Adoption Program is: 360-378-4710.


How do you pause mcafee?

To pause McAfee, you will want to right click on the small icon in the toolbar. Then choose the pause command. You can also bring up your list of programs, find the McAfee program and open it. Then pause the program.


What is the phone number of the Landmarks Public Art Program in Austin Texas?

The phone number of the Landmarks Public Art Program is: 512-495-4315.


What is the phone number of the Prophetstown Main St Program in Prophetstown Illinois?

The phone number of the Prophetstown Main St Program is: 815-537-5139.


What is the phone number of the Ohio Lawyers Assistance Program in Columbus Ohio?

The phone number of the Ohio Lawyers Assistance Program is: 614-586-0621.


What is the phone number of the Hull Lifesaving Museum Maritime Program in Hull Massachusetts?

The phone number of the Hull Lifesaving Museum Maritime Program is: 781-925-2488.


What is the phone number of the Whitney Independent Study Program in New York New York?

The phone number of the Whitney Independent Study Program is: 212-431-1737.


Can you pause a program on HD TV?

No you can not pause live tv, but u can record a programme with a dvr


What is the phone number of the St Cloud Main Street Program in Saint Cloud Florida?

The phone number of the St Cloud Main Street Program is: 407-498-0008.


How can you pause or break a C plus plus program running in DOS-BOX?

There is no pause function as such, but you can easily roll your own: #include <iostream> #include <limits> void Pause() { std::cout << "Press ENTER to continue..."; std::cin.ignore( std::numeric_limits<std::streamsize>::max(), '\n' ); } int main() { Pause(); return( 0 ); }