Issue
An error, " the driver installation file for this device is missing a necessary entry. This may be because the inf file was written for Windows 95 or later. " displays on the computer during the installation of the printer software. The error seems to occur on Windows XP and Windows 2000 systems
Solution
The cause of this error is not well understood at this time and is still under investigation. One possible solution is listed below
Cause
This error occurs when the USB Printing Support driver for Microsoft Windows 98 Second Edition is installed from the HP Color LaserJet install CD instead of using the USB Printing Support driver that already exists in Microsoft Windows. The Microsoft Windows 98 USB Printing Support driver is not compatible with later versions of Windows. In some rare cases the USB Printing Support driver (usbprint.inf) may not exist on the operating system and must be added. This is typically located at c:\windows\inf
After adding usbprint.inf to windows directory, you can try installing device drivers.
Custom Search
Thursday, January 12, 2012
Tuesday, January 10, 2012
Outlook, Sending Emails without Subject
Since couple of days i was facing a crazy outlook issue in one of my user's pc.
Although he write Subject and body, Outlook was sending email without. Even this user cannot see the subject of email from his sent Items. On other side Recipient was not getting subject in email.
It’s important and mandatory that the emails we send have relevant “subject” to it. At times, we miss to mention the subject and send email.
googled many times, MS KBs I found nothing.
What all I found is just to enable your outlook warn you in case of you are sending email without subject which is available and turned on by default in all outlook versions. Which was also helpless in this case.
However i found some other thing to do the same thing manually instead of outlook but with your piece of code inserted into a outlook program .
Save this and now close the VB Code editor and take a breath. From now on, this macro will make sure you or the outlook itself do not make mistake of sending an email without subject.
Although he write Subject and body, Outlook was sending email without. Even this user cannot see the subject of email from his sent Items. On other side Recipient was not getting subject in email.
It’s important and mandatory that the emails we send have relevant “subject” to it. At times, we miss to mention the subject and send email.
googled many times, MS KBs I found nothing.
What all I found is just to enable your outlook warn you in case of you are sending email without subject which is available and turned on by default in all outlook versions. Which was also helpless in this case.
However i found some other thing to do the same thing manually instead of outlook but with your piece of code inserted into a outlook program .
Which is as below and it fixed my issue now user is able to see the subject in sent items and the recipient in his received email.
- Open your outlook
- Press Alt+F11. This opens the Visual Basic editor
- On the Left Pane, one can see “Microsoft Outlook Objects”, expand this. Now one can see the “ThisOutLookSession.”
- Click on “ThisOutLookSession”.
- Copy and Paste the following code.
-------------------------------------------------------------------------
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim strSubject As String
strSubject = Item.Subject
If Len(strSubject) = 0 Then
Prompt$ = "Subject is Empty. Are you sure you want to send the Mail?"
If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Check for Subject") = vbNo Then
Cancel = True
End If
End If
End Sub
-----------------------------------------------------------------------------------------------Save this and now close the VB Code editor and take a breath. From now on, this macro will make sure you or the outlook itself do not make mistake of sending an email without subject.
Subscribe to:
Comments (Atom)