A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Search Forums
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Showing results 1 to 25 of 25
Search took 0.25 seconds.
Search: Posts made by: ryguy7272
Forum: Outlook and VBA June 2nd 08, 02:56 PM Posted to microsoft.public.outlook.program_vba
Replies: 17
Views: 2,272
Posted By ryguy7272
Possible to Disable Object Model Guard?

After querying some great resources, both in my office and on the web, I've
come to the conclusion that this can't be done practically with our Outlook
mail system. The IT guys would have to give...
Forum: Outlook and VBA May 15th 08, 05:43 PM Posted to microsoft.public.outlook.program_vba
Replies: 17
Views: 2,272
Posted By ryguy7272
Possible to Disable Object Model Guard?

Ok, I couldn't just leave it alone; I like to finish whatever I start.

I found this code:
Dim myOlApp As Outlook.Application
Dim mpfInbox As Outlook.MAPIFolder
Dim obj As Outlook.MailItem
Dim...
Forum: Outlook and VBA May 15th 08, 04:46 PM Posted to microsoft.public.outlook.program_vba
Replies: 17
Views: 2,272
Posted By ryguy7272
Possible to Disable Object Model Guard?

I’ve tried all sorts of things, but I still don't know how to set the
Message.Configuration details for CDO. Also, I don’t know if I am running
SMPT or not. I know almost nothing about...
Forum: Outlook and VBA May 14th 08, 02:43 PM Posted to microsoft.public.outlook.program_vba
Replies: 17
Views: 2,272
Posted By ryguy7272
Possible to Disable Object Model Guard?

Welcome to the party Paul. I believe there is a way to send multiple emails,
via Outlook, without those warnings popping up every 5 second, but I have
never actually done it. I tried your method,...
Forum: Outlook and VBA May 13th 08, 03:47 AM Posted to microsoft.public.outlook.program_vba
Replies: 17
Views: 2,272
Posted By ryguy7272
Possible to Disable Object Model Guard?

Good site Sue, unfortunately I still get an error...

Error says:
'The SendUsing configuration value is invalid'

This is the line that causes the error:
objMessage.Send

The Object Model Guard pops...
Forum: Outlook and VBA May 12th 08, 09:16 PM Posted to microsoft.public.outlook.program_vba
Replies: 17
Views: 2,272
Posted By ryguy7272
Possible to Disable Object Model Guard?

I did some editing; still get errors.
Error occurs he
Set .Configuration = cdoConfig


Entire macro:
Sub Send_Files()

Dim OutApp As Object
Dim OutMail As Object
Forum: Outlook and VBA May 12th 08, 07:39 PM Posted to microsoft.public.outlook.program_vba
Replies: 17
Views: 2,272
Posted By ryguy7272
Possible to Disable Object Model Guard?

Thanks for the follow up Sue. I guess I still don't understand what makes
this work or not work. Not, I am using this code:

With OutMail
objMessage.To = cell.Value
...
Forum: Outlook and VBA May 12th 08, 05:37 PM Posted to microsoft.public.outlook.program_vba
Replies: 17
Views: 2,272
Posted By ryguy7272
Possible to Disable Object Model Guard?

I read the information he
http://www.outlookcode.com/article.aspx?id=52

It is very interesting. Maybe I missed something, but I still can't seem to
disable the Outlook Object Model Guard. I am...
Forum: Outlook and VBA February 4th 08, 08:02 PM Posted to microsoft.public.outlook.program_vba
Replies: 12
Views: 1,503
Posted By ryguy7272
Need Help from an Outlook Expert; Probably MVP-Level

Yes, Ken, you are 100% correct. I think I compensated appropriately with
this line:
Set OutApp = CreateObject("Outlook.Application")

That's what I'm using; I think that's right.


Thanks for...
Forum: Outlook and VBA February 4th 08, 07:06 PM Posted to microsoft.public.outlook.program_vba
Replies: 5
Views: 15,590
Posted By ryguy7272
Close Task Window?

Resolved:
http://www.microsoft.com/office/community/en-us/default.mspx?dg=microsoft.public.outlook.program_vba&tid=9dc04051-d98e-499a-8a30-85c950897aab&cat=&lang=en&cr=US&sloc=&p=1


--
RyGuy


"Ken...
Forum: Outlook and VBA February 4th 08, 07:05 PM Posted to microsoft.public.outlook.program_vba
Replies: 7
Views: 646
Posted By ryguy7272
Prevent duplicates from being entered into the Task list

Resolved:
http://www.microsoft.com/office/community/en-us/default.mspx?dg=microsoft.public.outlook.program_vba&tid=9dc04051-d98e-499a-8a30-85c950897aab&cat=&lang=en&cr=US&sloc=&p=1



--...
Forum: Outlook and VBA February 4th 08, 07:03 PM Posted to microsoft.public.outlook.program_vba
Replies: 12
Views: 1,503
Posted By ryguy7272
Need Help from an Outlook Expert; Probably MVP-Level

Well, I finally got it working. There seemed to be a problem with the
iCounter at one point; I think that has been resolved. Also, an error kept
coming up; I added a small line of code in an...
Forum: Outlook and VBA February 1st 08, 09:23 PM Posted to microsoft.public.outlook.program_vba
Replies: 12
Views: 1,503
Posted By ryguy7272
Need Help from an Outlook Expert; Probably MVP-Level

If I use this:
newtask.Delete

I get an error on this line:
If ((newTask.Subject = oldTask.Subject)) Then

....not found? Make any sense?

--
RyGuy
Forum: Outlook and VBA February 1st 08, 06:56 PM Posted to microsoft.public.outlook.program_vba
Replies: 12
Views: 1,503
Posted By ryguy7272
Need Help from an Outlook Expert; Probably MVP-Level

No...well it's not that easy. I tried several combinations of things, and
this causes an error on this line:
If ((newTask.Subject = oldTask.Subject)) Then

Any other ideas?
TIA!

--
RyGuy
Forum: Outlook and VBA February 1st 08, 06:21 PM Posted to microsoft.public.outlook.program_vba
Replies: 12
Views: 1,503
Posted By ryguy7272
Need Help from an Outlook Expert; Probably MVP-Level

Good catch Aravind. Actually, I had no tasks in the Task Folder at the time.
Now with a few tasks in there, and two dupes, it seems to be counting the
items correctly, the only thing it does not...
Forum: Outlook and VBA February 1st 08, 03:42 PM Posted to microsoft.public.outlook.program_vba
Replies: 12
Views: 1,503
Posted By ryguy7272
Need Help from an Outlook Expert; Probably MVP-Level

The code below fails on this line:
While ((j totalcount) And (myItems(j).Class olTask))

I put the cursor over j and see that Excel interprets it as 1, and I put the
cursor over totalcount and...
Forum: Outlook and VBA January 31st 08, 03:56 PM Posted to microsoft.public.outlook.program_vba
Replies: 7
Views: 646
Posted By ryguy7272
Prevent duplicates from being entered into the Task list

Hey Ken! Again, thanks for the info. I know I should look in the Object
Browser to understand the Classes and Items better. The Restrict examples
were good, but unfortunately I'm still not...
Forum: Outlook and VBA January 30th 08, 06:38 PM Posted to microsoft.public.outlook.program_vba
Replies: 7
Views: 646
Posted By ryguy7272
Prevent duplicates from being entered into the Task list

I found this code on the web:
Sub Macro1()
Dim oldTask As TaskItem, newTask As TaskItem, j As Integer

Dim iCounter As Integer

Set myNameSpace = GetNamespace("MAPI")
Set myFolder =...
Forum: Outlook and VBA January 30th 08, 04:39 PM Posted to microsoft.public.outlook.program_vba
Replies: 7
Views: 646
Posted By ryguy7272
Prevent duplicates from being entered into the Task list

I know you gave me an answer Ken, but I don't know what it means. I googled
around for an answer this morning and I am still without a solution. If you
have a sub, or a function, or something...
Forum: Outlook and VBA January 30th 08, 04:09 PM Posted to microsoft.public.outlook.program_vba
Replies: 7
Views: 646
Posted By ryguy7272
Prevent duplicates from being entered into the Task list

I decided to start a new post because my other was answered, and I was
starting to get off the initial topic with a new question. How can I prevent
duplicates from being entered into the Task...
Forum: Outlook and VBA January 30th 08, 12:02 AM Posted to microsoft.public.outlook.program_vba
Replies: 5
Views: 15,590
Posted By ryguy7272
Close Task Window?

Awesome! One more question...a little off the original topic... How can I
prevent duplicates from being entered into the Task list? I may open the
Excel tool on Monday and update tasks for...
Forum: Outlook and VBA January 29th 08, 08:09 PM Posted to microsoft.public.outlook.program_vba
Replies: 5
Views: 15,590
Posted By ryguy7272
Close Task Window?

Part of my code is pasted below:
Dim objApp As Object
Dim OutTask As Object

Set objApp = CreateObject("Outlook.Application")
Set OutTask = objApp.CreateItem(olTaskItem)
With...
Forum: Outlook and VBA September 19th 07, 03:52 PM Posted to microsoft.public.outlook.program_vba
Replies: 4
Views: 1,046
Posted By ryguy7272
Integrate Excel and Outlook

Yes, I can create items in that folder manually. Sometimes Outlook acts
bizarre, like it won’t even allow me to set my available references to the
Outlook Object Library when I am in the VBE in...
Forum: Outlook and VBA September 14th 07, 03:22 PM Posted to microsoft.public.outlook.program_vba
Replies: 4
Views: 1,046
Posted By ryguy7272
Integrate Excel and Outlook

Thanks for the look Sue. I tried this snippet of code. It looks like it
should work, but it still does not work for me. A right-click on the public
calendar reveals language such as “when...
Forum: Outlook and VBA September 12th 07, 09:48 PM Posted to microsoft.public.outlook.program_vba
Replies: 4
Views: 1,046
Posted By ryguy7272
Integrate Excel and Outlook

I am trying, in vain, to find a way to set appointments to our firm’s Public
‘Office Calendar’. I used the code from this URL:

http://www.dicks-clicks.com/excel/olCalendar.htm

It worked great...
Showing results 1 to 25 of 25

 
Forum Jump

All times are GMT +1. The time now is 01:45 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.