Link to home
Start Free TrialLog in
Avatar of RIAS
RIASFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Saving .msg files to .doc +vb6.0

Hi,
Can anyone please suggests on how can I save .msg files to .doc +vb6.0
Avatar of tbsgadi
tbsgadi
Flag of Israel image

Have a look at the following:

http://www.bestshareware.net/download/outlook-eml-and-msg-converter.htm

Good Luck!

Gary
ASKER CERTIFIED SOLUTION
Avatar of David Lee
David Lee
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RIAS

ASKER

Hi,
THe problem is I have .msg files in folder so not using outlook.exe directly..any suggestions on objMessage.SaveAs "Some File Name", olDoc


Cheers
Avatar of RIAS

ASKER

Hi tbsgad,


Can you please copy and paste the code in here as cannot access this url ..security issue


Cheers
Open the message in Outlook using the code I posted to your other question, then use the command above to save to .doc format.  Unless you are going to learn enhanced MAPI programming, then the only way I know of to read a .msg file is using Outlook.  There may be 3rd-party programs that use enhanced MAPI to read .msg files without Outlook, the one Gary linked to appears to require Outlook, but I'm not familiar with any.
Avatar of RIAS

ASKER

oki mate will try .....
Avatar of RIAS

ASKER

Hi,
Tried it but it doesnt convert it to doc format it saves it as file type

Code used:
olkMsg.SaveAs Foldername & olkMsg.Subject, olDoc


Am I  going wrong somewhere?

Sorry, typo.  I omitted the extension.  Use this instead

    olkMsg.SaveAs Foldername & olkMsg.Subject & ".doc", olDoc
Avatar of RIAS

ASKER

Hi,
Sorry no luck ..it errrors
What's the error?
Avatar of RIAS

ASKER

Hi,
It justs jumps out of the function on that linedon't really know

Cheers
So it just stops running and doesn't display any error messages?
Avatar of RIAS

ASKER

Yup..it jumps out of the function
Avatar of RIAS

ASKER

Hi,
Manage to save it in txt ile thats fine..you r previous solution did work.thanks for that.
Now I need to set a printer which is different from default printer how do i  set it and get the .msg file printed with all its attachments in vb.

I tried your solution on other qustions:

Public Sub PrintMessagesAndAttachments()
    Dim objFSO As Object, _
        objFolder As Object, _
        objFile As Object, _
        objTempFolder As Object, _
        olkMsg As Object, _
        olkAttachment As Object
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objTempFolder = objFSO.GetSpecialFolder(2)
    'Change the folder path on the following line'
    Set objFolder = objFSO.GetFolder("C:\eeTesting")
    For Each objFile In objFolder.Files
        If objFSO.GetExtensionName(objFile.Path) = "msg" Then
            ShellExecute 0&, "print", objFile.Path, 0&, 0&, 0&
            Set olkMsg = Application.CreateItemFromTemplate(objFile.Path)
            For Each olkAttachment In olkMsg.Attachments
                olkAttachment.SaveAsFile objTempFolder & "\" & olkAttachment.fileName
                ShellExecute 0&, "print", objTempFolder & "\" & olkAttachment.fileName, 0&, 0&, 0&
            Next
        End If
    Next
    Set objFSO = Nothing
    Set objFolder = Nothing
    Set objFile = Nothing
    Set objTempFolder = Nothing
    Set olkMsg = Nothing
    Set olkAttachment = Nothing
End Sub

but it errors on the line
    Set olkMsg = Application.CreateItemFromTemplate(objFile.Path)

Should I post another question for this?


Cheers

No need to open another question.  Here's the code for printing to a specific printer.
Sub PrintAttachmentToSpecificPrinter(Item As Outlook.MailItem)
    Dim wshNet As Object, _
        strCurrentDefault As String, _
        objFSO As Object, _
        objTempFolder As Object, _
        olkAttachment As Outlook.Attachment
    strCurrentDefault = GetDefaultPrinter()
    Set wshNet = CreateObject("Wscript.Network")
    'Change the printer name on the next line to that of the printer you want attachments printed to
    wshNet.SetDefaultPrinter "Microsoft Office Document Image Writer"
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objTempFolder = objFSO.GetSpecialFolder(2)
    For Each olkAttachment In Item.Attachments
        olkAttachment.SaveAsFile objTempFolder & "\" & olkAttachment.FILENAME
        ShellExecute 0&, "print", objTempFolder & "\" & olkAttachment.FILENAME, 0&, 0&, 0&
    Next
    wshNet.SetDefaultPrinter strCurrentDefault
    Set wshNet = Nothing
    Set objFSO = Nothing
    Set objTempFolder = Nothing
    Set olkAttachment = Nothing
End Sub
 
Function GetDefaultPrinter() As String
    Dim strPrinter As String, _
        intReturn As Integer
    strPrinter = Space(255)
    intReturn = GetProfileString("Windows", ByVal "device", "", strPrinter, Len(strPrinter))
    If intReturn Then
        strPrinter = UCase(Left(strPrinter, InStr(strPrinter, ",") - 1))
    End If
    GetDefaultPrinter = strPrinter
End Function

Open in new window

Avatar of RIAS

ASKER

Cheers mate