umm does vs2003 integrate with outlook anyhow? I wanna write an app that opens a bunch of emails and I dont know if it's directly supported by framework 1.1 classes or not give me some clues.........
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
ah 2 thumbs up thanks a lot... spent 40 mins in the vb6 editor of outlook and only figured this much out
Dim mee As MAPIFolder
Set mee = Outlook.Session.Folders.Item(2)
Dim inbox As Object
Set inbox = mee .Folders.Item(2)
Dim i As Integer
Dim s As String
For i = 1 To inbox.Items.Count
s = s & inbox.Items.Item(i)
Next
umm ok so does outlook have to be open for all these to work?
I"m gonna try working on this later... midterm tomorrow, but thanks for the help
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
You need to create a New instance of the Application Object which basically opens Outlook.
What are you trying to do? Maybe a better way?
umm
one particular folder in one of the accounts that I have receives a bunch of mails. I need to open each mail and locate every url in it (basically find all the URLs in all the emails that I have in that folder). Then I try to download the http page that the url points to...... dont ask why
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
I thought that maybe you were trying to replicate the welcome screen in XP where it displays the number of unread
new emails received.
Are your emails all HTML body format? or a combination of pain/rich/html text?
umm not sure what I'll be getting. I expect them to be HTML... I mean I can parse through it myself. My problem is that I dont know how to open each mail. If I can examine each email one by one then I can do the rest...
as to why there is this company that sends advertisements out and if I subscribe and "read" each email (by clicking on links) I get 2 cents per email... so if I do a lot of it with a program I get a few dollars a month
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
I'll expand on the code I posted to enumerate the items in this folder called ???
Give me a few minutes. I need to enter in my time card so I can get paid
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
whoa thats a lot of code and effort thanks!!!!!!!!! I'll see what I can make out of it
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
hmm feeling dumb
I added that com reference, but it says it cant find the namespace on the imports line :
Imports Microsoft.Office.Interop
what else do I need to add
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
Ok, I pasted in my code into an existing Outlook test project and rebuilt and got your error.
I will connect to work and get my source project and see what the root namespace is.
Hold on....
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
Ok, I pasted in my code into an existing Outlook test project and rebuilt and got your error.
I will connect to work and get my source project and see what the root namespace is.
Hold on....
thanks
I'm not in a hurry though, so take your time... I'll probably have to wait till the weekend
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
Ok, this must be some weird .NET thing now. .Interop is not showing on my home system, but it does for
my work system. Both are the same versions and Office versions. Only difference is my work system is
XP SP2 and home is XP SP1.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum.
w00t it's working!! unbelievable hah
p.s. I didnt even need Office.Interop. It compiled without it!
one thing, every time I do this outlook asks me whether I should allow the program to access the data or not. Is there a way to stop that?
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB ) VB.NET to C# conversion tips!!
But you used the "Imports Microsoft.Office" though?
You can stop the Outlook Security Prompt by re-writing your app as an Trusted Outlook Add-In using the
IDExtensibility2 implements (usually a pain).
With .NET I do believe there is another option, but I cant remember right now. I vaguely remember reading
something about new VS.NET features/capabilities. I havent got too deep into .NET and Office yet.
Not much time lately.
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum.