Questions tagged [msg]

"msg" is the extension of Microsoft Outlook message files

MSG is the extension of Microsoft Outlook message files, that is a proprietary format different from the more popular EML files.

You should use the msg tag to identify questions related to Microsoft Outlook Messages (.msg) file processing.

280 questions
0
votes
0 answers

SQL server I'm getting must declare the scalar variable for @rental_fee and syntax error at END;

What I'm trying to do is check to see if the two fields (user_account.status & rental_queue.movie_return) have a value of 2 if so then update payment.rental_fee with 25. I'm getting an error must declare the scalar variable @rental_fee and on the…
SEANDON
  • 1
  • 5
0
votes
1 answer

How can I msg to skype?

How can it send a msg to someone written in the application, I have the java down below but this one asks me to write the name that I skype msg to ((Button) findViewById(R.id.skypemsg)).setOnClickListener(new OnClickListener() { @Override …
Tina
  • 15
  • 4
0
votes
1 answer

VB.NET Changing Colors for each line in a error message

Hi I created an error message that contains each value of whether or not is was a pass or fail. I would like each entry to change color based on Passed = green and pail = red. Example: Fare: Passed Name: Passed Date: Failed Address: Failed Age:…
user4215585
0
votes
1 answer

C# Outlook Attachment.SaveAsFile fails on .msg file type

So I have the following code, which extracts all attachments from a Contact item (residing in a shared folder): Outlook._Application objOutlook; //declare Outlook application objOutlook = new Outlook.Application(); //create…
Jez Clark
  • 383
  • 5
  • 19
0
votes
1 answer

Update Statement Fails

I have a table called [dbo].[ProductComponentRelationship] with 4 fields [ProductComponentRelationshipID] PK, INt, Not Null [ProductItemID] FK, Int Not Null [ComponentItemID] FK, Int, Not Null [SequenceNumber] int null This table houses a bunch of…
0
votes
2 answers

Get file extension when extension is not shown (Email msg attachments in outlook)

I have a program that uses EWS to pull emails from an exchange server, gets the attachments off of them and converts them to PDFs. Before I convert them, I check all of the extensions of the attachments to make sure they are something I can…
0
votes
0 answers

Outlook alter html code when converting from msg

What i did: created an html template:

title 1

AAA

title 2

Dave
  • 91
  • 7
0
votes
1 answer

Decode mailitems with different codepages to the same codepage / encoding

currently i'm working with the c# outlook interop classes to process .msg files (saved from exchange server). The mails are saved with different mail.InternetCodepage because i need the content of the mail (= mail.Body) i have to decode the…
Dominik00000
  • 311
  • 1
  • 3
  • 10
0
votes
1 answer

MSG command from java 32 applicaiton not working in 64 bit win 7/ win 2008 server

I am using MSG command[NETSEND is no longer available] to send message from Win 7/2008 server(32/64 bit) to Win 7/2008 server(32/64 bit) and my java application is 32 bit and cannot use 64 bit due to certain requirements(using java 7 update 25).…
0
votes
1 answer

Unidentified MAPI property returned by Apache POI

I was digging in Apache POI API, trying out what all properties it fetches out of MSG file. I parsed MSG file using POIFSChunkParser. Here is the code: try { InputStream is = new FileInputStream("C:\\path\\email.msg"); POIFSFileSystem…
Mahesha999
  • 22,693
  • 29
  • 116
  • 189
0
votes
1 answer

Check a msqid to see if there is message without waiting or msgrcv

Thank you all for checking this. I wanted to know if there is any way to check a message queue (msqid) and see if there are any messages in the queue. If not, I would like to continue. The only way I've been able to find online is by using msgrcv,…
user1660454
  • 61
  • 1
  • 6
0
votes
1 answer

How to get information from .msg file (IPM.Appointment) C#

I have some Outlook Appointments saved to my local drive. How can I get the subject and the location where the appointment takes place in C# without creating an Outlook Application object (on my computer Outlook is not installed!) and without…
0
votes
1 answer

Are records in a PST file stored in as contiguous blocks?

Let's assume a PST with the following structure: Inbox: msg1 msg2 Draft: msg3 msg4 can I assume that msg1 & msg2 are stored next to each other and msg3 & msg4 are stored next to each other?
hba
  • 7,406
  • 10
  • 63
  • 105
0
votes
1 answer

Reading Microsoft Outlook MSG Content in pure C code

I need to read some Microsoft Outlook MSG file in pure C code. What I need is a library that doesn't depend on any particular framework (.NET, Java, etc), so a library/class/set of functions completely written in C.
Gianluca
  • 1
  • 3
0
votes
2 answers

MAPI: Format of PR_SEARCH_KEY

Does anyone know the format of the MAPI property PR_SEARCH_KEY? The online documentation has this to say about it: The search key is formed by concatenating the address type (in uppercase characters), the colon character ':', the e-mail…
Luke Quinane
  • 16,447
  • 13
  • 69
  • 88