iPhone: After installing update, iPhone shows “Waiting for activation”

Symptoms

After updating to iPhone Software, you may see the following alert message on iPhone: “Waiting for activation.” This indicates that iPhone is attempting to communicate with the cell phone tower.

Products Affected

iPhone

Resolution

If this message is displayed for more than a few minutes, try moving to a different location. Note: If you are indoors, trying going outdoors or moving closer to a window. Verify you have  wireless coverage in your area.

SOURCE – http://support.apple.com/kb/TS1556?viewlocale=en_US

For any questions, queries please do not hesitate to leave a comment in the queries page at the bottom of the page or contact us at compfaqz@gmail.com

Join us on facebook

http://www.facebook.com/pages/Compfaqz/178832208817415

“Error 691″ or “Error 734″ When You Attempt to Establish a Dial-Up Connection in Windows XP

SYMPTOMS

When you attempt to establish a dial-up connection, you may receive an error message similar to one of the following:

Error 691: The computer you are dialing in to cannot establish a Dial-Up Networking connection. Check your password, and then try again.
-or-
Error 691: Access was denied because the username and/or password was invalid on the domain.
-or-
Error 734: The PPP link control protocol was terminated.

As a result, you cannot establish a dial-up connection.

CAUSE

This behavior can occur if any of the following conditions are true:

  • The Include Windows logon domain check box is selected in the Options tab of the dial-up connection’s Properties dialog box.
    -or-
  • An incorrect user name or password is used.
    -or-
  • The dial-up connection’s security option is incorrectly configured to use the Require secured password setting.

RESOLUTION

To resolve this behavior, follow these steps:

  1. Click Start, point to Connect To, and then click your dial-up connection.
  2. Click Properties, and then click the Options tab.
  3. Click to clear the Include Windows logon domain check box (if it is selected), and then click OK.
  4. Click Dial.
    • If this procedure resolves the issue, and you can establish a dial-up connection; you do not need to follow the remaining steps in this article.
    • If this does not resolve the issue, and you cannot establish a dial-up connection, go to step 5 to further troubleshoot this issue.
  5. In the Connect dialog box, verify that your user name and password are correctly typed in the User name and Password boxes, and then click Dial.
    • If this procedure resolves the issue, and you can establish a dial-up connection; you do not need to follow the remaining steps in this article.
    • If this does not resolve the issue, and you cannot establish a dial-up connection, go to step 6 to further troubleshoot this issue.
  6. Click Start, point to Connect To, and then click your dial-up connection.
  7. In the Connect dialog box, click Properties.
  8. Click the Security tab.
  9. Under Security options, click Allow unsecured password in the Validate my identity as follows box, and then click OK.

MORE INFORMATION

For additional information about how to create a dial-up connection in Windows XP, click the article numbers below to view the articles in the Microsoft Knowledge Base:

305549  HOW TO: Configure a Connection to the Internet in Windows XP Professional
308522  Description of the Network Setup Wizard in Windows
284269  HOW TO: Save and Restore Dial-up Connections
APPLIES TO
  • Microsoft Windows XP Home Edition
  • Microsoft Windows XP Professional

For any questions, queries please do not hesitate to leave a comment in the queries page at the bottom of the page or contact us at compfaqz@gmail.com

Join us on facebook

http://www.facebook.com/pages/Compfaqz/178832208817415

“Error 1500: Another installation is in progress” error message when you try to upgrade to Visio 2002 from Visio 2000

SYMPTOMS

When you attempt to upgrade to Microsoft Visio 2002 from Microsoft Visio 2000, you may receive the following error message:

MS Visio Setup Information.
Error 1500: Another installation is in progress. You must complete that installation before continuing.

RESOLUTION

To resolve this issue, start your computer in Safe mode, and then install Visio 2002. To do this, follow these steps.

NOTE: Because there are several versions of Microsoft Windows, the following steps may be different on your computer. If they are, see your product documentation to complete these steps.

  1. Restart your computer. When the Startup menu appears, press F8.
  2. On the Advanced Options menu, select Safe Mode, and then press ENTER. Click OKto close the “Safe Mode” notice.
  3. Click Start, point to Settings, and then click Control Panel.
  4. In Control Panel, double-click Add/Remove Programs.
  5. Click Add New Programs, and then click CD or Floppy. Follow the on-screen instructions to complete the installation.
  6. Restart your computer in Normal mode.
APPLIES TO
  • Microsoft Visio 2002 Standard Edition
  • Microsoft Visio 2002 Professional Edition

For any questions, queries please do not hesitate to leave a comment in the queries page at the bottom of the page or contact us at compfaqz@gmail.com

Join us on facebook

http://www.facebook.com/pages/Compfaqz/178832208817415

A LNK2005 error occurs when the CRT library and MFC libraries are linked in the wrong order in Visual C++

SYMPTOMS

When the C Run-Time (CRT) library and Microsoft Foundation Class (MFC) libraries are linked in the wrong order, you may receive one of the following LNK2005 errors:
nafxcwd.lib(afxmem.obj) : error LNK2005:
“void * __cdecl operator new(unsigned int)”(??2@YAPAXI@Z) already
defined in LIBCMTD.lib(new.obj)
nafxcwd.lib(afxmem.obj) : error LNK2005:
“void __cdecl operator delete(void *)”(??3@YAXPAX@Z) already defined
in LIBCMTD.lib(dbgnew.obj)
nafxcwd.lib(afxmem.obj) : error LNK2005:
“void * __cdecl operator new(unsigned int,int,char const *,int)”
(??2@YAPAXIHPBDH@Z) already defined in LIBCMTD.lib(dbgnew.obj)
mfcs40d.lib(dllmodul.obj): error LNK2005: _DllMain@12 already defined in
MSVCRTD.LIB (dllmain.obj)
mfcs42d.lib(dllmodul.obj): error LNK2005: _DllMain@12 already defined in
msvcrtd.lib(dllmain.obj)

CAUSE

The CRT libraries use weak external linkage for the newdelete, and DllMain functions. The MFC libraries also contain newdelete, and DllMain functions. These functions require the MFC libraries to be linked before the CRT library is linked.

RESOLUTION

There are two ways to resolve this problem. The first solution involves forcing the linker to link the libraries in the correct order. The second solution allows you to find the module that is causing the problem and to correct it.Note The following steps are based on Visual C++ 6.0.

Solution One: Force Linker to Link Libraries in Correct Order

  1. On the Project menu, click Settings.
  2. In the Settings For view of the Project Settings dialog box, click to select the project configuration that is getting the link errors.
  3. On the Link tab, click to select Input in the Category combo box.
  4. In the Ignore libraries box, insert the library names (for example, Nafxcwd.lib;Libcmtd.lib).Note The linker command-line equivalent in /NOD:<library name>.
  5. In the Object/library modules box, insert the library names. You must make sure that these are listed in order and as the first two libraries in the line (for example, Nafxcwd.lib Libcmtd.lib).
To set this option in Visual C++ .NET, read the “Setting Visual C++ Project Properties” online help topic.

Solution Two: Locate and Correct the Problem Module

To view the current library link order, follow these steps:

  1. On the Project menu, click Settings.
  2. In the Settings For view of the Project Settings dialog box, click to select the project configuration that is getting the link errors.
  3. On the Link tab, type /verbose:lib in the Project Options box.
  4. Rebuild your project. The libraries will be listed in the output window during the linking process.

STATUS

This behavior is by design.

MORE INFORMATION

When you use the MFC libraries, you must make sure that they are linked before the CRT library is linked. You can do this by making sure that every file in your project includes Msdev\Mfc\Include\Afx.h first, either directly (#include <Afx.h>) or indirectly (#include <Stdafx.h>). The Afx.h include file forces the correct order of the libraries, by using the #pragma comment (lib,”<libname>”) directive.

If the source file has a .c extension, or the file has a .cpp extension but does not use MFC, you can create and include a small header file (Forcelib.h) at the top of the module. This new header makes sure that thelibrary search order is correct.

Visual C++ does not contain this header file. To create this file, follow these steps:

  1. Open Msdev\Mfc\Include\Afx.h.
  2. Select the lines between #ifndef _AFX_NOFORCE_LIBS and #endif //!_AFX_NOFORCE_LIBS.
  3. Copy the selection to the Windows Clipboard.
  4. Create a new text file.
  5. Paste the contents of the Clipboard into this new file.
  6. Save the file as Msdev\Mfc\Include\Forcelib.h.

Steps to Reproduce the Problem in Visual C++ .NET

  1. Start Microsoft Visual Studio .NET.
  2. On the File menu, point to New, and then click Project.
  3. Click Visual C++ Projects under Project Types, and then click MFC Applicationunder Templates.
  4. In the Name text box, type Q148652.
  5. In the Location text box, type C:\Test, and then click OK.
  6. In the MFC Application Wizard dialog box, click Application Type.
  7. Click Dialog based under Application type, and then click Use MFC in a static library under Use of MFC.
  8. Click Finish.
  9. In Solution Explorer, under Source Files select all the three .cpp files.
  10. Right-click the three selected files, and then click Remove.
  11. Right-click Source files, point to Add, and then click Add New Item.
  12. Click C++ files under Templates. In the Name text box, type Aa. Click Open.
  13. Paste the following code in the Aa.cpp file:
    int test(){new int; return 1;}
  14. Right-click Source Files, point to Add, and then click Add Existing Item.
  15. Select the following files:
    • Q148652.cpp
    • Q148652Dlg.cpp
    • stdafx.cpp
  16. Click Open.
  17. The files that you selected in step 15 appear under Source Files.
  18. Select all four .cpp files under Source Files.
  19. Right-click the four .cpp files that you selected, and then click Properties.
  20. Expand Configuration Properties, and then expand C/C++.
  21. Click Precompiled Headers.
  22. Set the Create/Use Precompiled Header property to Not Using Precompiled Headers. Click OK.
  23. On the Build menu, click Rebuild Solution.
APPLIES TO
  • Microsoft Visual C++ 2008 Express Edition
  • Microsoft Visual C++ 4.0 Standard Edition
  • Microsoft Visual C++ 4.1 Subscription
  • Microsoft Visual C++ 5.0 Enterprise Edition
  • Microsoft Visual C++ 6.0 Enterprise Edition
  • Microsoft Visual C++ 5.0 Professional Edition
  • Microsoft Visual C++ 6.0 Professional Edition
  • Microsoft Visual C++, 32-bit Learning Edition 6.0
  • Microsoft Visual C++ .NET 2002 Standard Edition
  • Microsoft Visual C++ .NET 2003 Standard Edition

SOURCE - http://support.microsoft.com

For any questions, queries please do not hesitate to leave a comment in the queries page at the bottom of the page or contact us at compfaqz@gmail.com

Join us on facebook

http://www.facebook.com/pages/Compfaqz/178832208817415

Error Message: Error 1722: The RPC Server Is Unavailable

APPLIES TO
  • Microsoft Office Word 2003
  • Microsoft Word 2002
  • Microsoft Word 2000
  • Microsoft Word 97 Standard Edition
Keywords:
kberrmsg kbmacroexample kbprb KB293092

SYMPTOMS

When you are automating another program with Microsoft Visual Basic or Microsoft Visual Basic for Applications, you may receive an error message similar to the following:

Error 1722: The RPC server is unavailable.

CAUSE

When you are automating a Microsoft Office program, it is possible to call one of the server’s objects without referencing the program object. The code may work once, or it may work when you step through it, but the code returns the error message when you run it from another program.

RESOLUTION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs.
If you have limited programming experience, you may want to contact a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:

Microsoft Certified Partners - https://partner.microsoft.com/global/30000104

Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS
For additional information, click the article number below to view the article in the Microsoft Knowledge Base:

290140  OFFXP: How to Run Sample Code from Knowledge Base Articles

When you write code against the server object reference, make sure to include the variable reference in calls to the server’s internal objects.

The following sample code displays the correct syntax:

Sub MyMacro()

   Dim x As Word.Application

   Set x = New Word.Application

   'The following line now contains a reference to the application
   ' object "x".
   x.Selection.Text = "test"

End Sub
SOURCE - http://support.microsoft.com

For any questions, queries please do not hesitate to leave a comment in the queries page at the bottom of the page or contact us at compfaqz@gmail.com

Join us on facebook

http://www.facebook.com/pages/Compfaqz/178832208817415