ThreadLast AuthorMessages
read/total
Date
181 bloqueador veicular sem mensalidades -http://bloqueadorgsm.vilabol.uol.co...
bloqueador sem mensal...
1 / 1 04 Apr 2008
...
Outlook Not Displaying Hotmail Inbox
Lawrence
1 / 1 04 Apr 2008
Hello, How come when I jump to Hotmail Inbox, it displays "There are no items to show in this view"? If I go to Send Items, there are items, but Inbox is blank? Sometimes it display, but most of the time I get that error message. Is there some issues with Outlook displaying hotmail inbox? Any fix for this? FYI, I have Outlook Connector installed, but obviously the error message...
Outlook Form To Collect Info and Create New Message
Sue Mosher [MVP-Outlook]
4 / 4 02 Apr 2008
>> One more question - Are the forms sent in form of an xml message? No. Outlook custom forms use a proprietary TNEF wrapper (Winmail.dat). -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 <irockinphx@gmail.com> wrote in message...
How to read an outlook form in a Web application
irockinphx@gmail.com
3 / 3 02 Apr 2008
...
classic veiw
AI+Denver
1 / 1 02 Apr 2008
Hi all, I'm using M$ Office 2007 How can I change the classic veiw? I mean same as 2003....
Signature/Logos received as an attachment
Phefos
1 / 1 01 Apr 2008
Hi, I'm using Outlook 2007 and when I receive emails with signatures/logos I receive them as attachments. Can some please help. Thank you...
IRibbonExtensibility and Exchange Client Addin
Dmitry Streblechenko
2 / 2 31 Mar 2008
Outlook will only QI for IRibbonExtensibility if your class is a COM add-in. Nothing however prevents you from implementing a COM add-in in the same dll or even the same class as your ECE. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Devansh" <devansh.mittal@gmail.com> wrote in message...
design a form menu is disabled
Danyi, Attila
1 / 1 26 Mar 2008
Could anybody help me? I can not reach the form designing capability on Outlook 2007. The design a form menu is gray. OS: Vista x32. Account to Exchange Server 2003. The choose form is available. I am an local admin. Any suggestion? Any help would be appreciated. Regards, d.a....
Get my data view and edit into outlook.
Sue Mosher [MVP-Outlook]
3 / 3 25 Mar 2008
In addition to Ken's ideas, there are some tools and APIs to help synchronize with an existing Outlook store. See http://www.outlookcode.com/article.aspx?ID=25 -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Jean Paul Mertens" <ON7AMI@newsgroups.nospam>...
Fields in Form, Folder and Item
Sue Mosher [MVP-Outlook]
2 / 2 25 Mar 2008
> I am very confused. I thought when I created custom fields in the item (by clicking New in the Value tab of the properties window of a control) that was creating the field in the folder, the form and the item. What folder? If you started the form design session by creating a new item in the target folder and then using its Design This Form command, then the fields would be in that folder....
Active content that can not be displayed in the Reading Pane?
Hombre
11 / 11 20 Mar 2008
...
Seaching User Defined Fields
Thatch
1 / 1 19 Mar 2008
I have installed Outlook 2007 with the new search capability. However, does anyone know how to search user defined properties? Also, how can I expand on the fields to search for?...
Convert HTML into OFT format?
Sue Mosher [MVP-Outlook]
2 / 2 17 Mar 2008
You can use the macro snippet in an Outlook VBA procedure to create a new message and load your HTML into it: Sub MakeHTMLMsg() Set objMsg = Application.CreateItem(olMailItem) Set fso = CreateObject("Scripting.FileSystemObject") Set ts = fso.OpenTextFile("c:\testfile.htm", 1) strText = ts.ReadAll objMsg.HTMLBody = strText objMsg.Display Set fso = Nothing...
UserProperty in response from meeting request recipient
Sue Mosher [MVP-Outlook]
2 / 2 11 Mar 2008
No, that's not possible. First, it is not possible to exchange custom property data without a custom form that contains the property definitions and is published to a location where both userse can access the published form definition. Furthermore, in the case of a meeting request, there is no mechanism to send custom property data back in an acceptance. The hidden form used for an acceptance...
Form not sending mtg request through "Scheduling" tab
Jennimil
1 / 1 10 Mar 2008
I created a custom conference room scheduling form, here's the issue... When I open the form from my calendar (File, New, Choose Form - Organizational Forms Library) , the form opens, I go to the Scheduling Tab and add "Conference Room 2A" as a resource (I have even added it as just a recipient too). Then I add my recipients. I send it and the meeting request fires just fine to all...
Form not sending mtg request through "Scheduling" tab
Jennimil
1 / 1 10 Mar 2008
I have created a custom meeting request form for scheduling conference rooms and conference resources. The form is the default on several different conference room calendars but our users also have the option of opening it from their own calendars and booking the room through the "Scheduling" tab. But here is the problem... I open the form from my calendar (File, New, Choose Form -...
Unable to publish outlook form
Gootee
5 / 5 08 Mar 2008
...
Message body does not function properly
Sue Mosher [MVP-Outlook]
9 / 9 03 Mar 2008
Yes, there's a relatively easy way to do this: Use VBA code to set a value for the standard BillingInformation property to hold the job number. You could use the Application_ItemSend method to prompt you for that value. Or, you could modify a table view to include that field, turn on in-cell editing, and edit it in the view itself. With that approach, you cannot, however, control what...
Open eml and specify to-adress and subject?
Regina Anger
1 / 1 25 Feb 2008
Hello, Is it possible to open a mail template (eml) and to fill the receiver-adress and the subject-line without using .NET or COM - just form the command line? If not, is it possible to write the mail-adress and the subject directly into the template to a temporary position, and open that? Thanks, Regina...
Image in html-Mail not shown in Outbox
Ralf
1 / 1 25 Feb 2008
Hi, I would like to create a MailItem with Body-Format html (Microsoft.Office.Interop.Outlook.OlBodyFormat.olFormatHTML) which contains a link to an Image. I attach the Image to the MailItem Outlook.MailItem mailItem = (Outlook.MailItem)app.CreateItem(Outlook.OlItemType.olMailItem); ... Outlook.Attachment a1 = mi.Attachments.Add(filename, Outlook.OlAttachmentType.olByValue, 0,...
Restricting A User's Read/Write Access
Ken Slovak - [MVP - O...
2 / 2 19 Feb 2008
You're best off posting in a BCM group with questions like this. There's not a lot of BCM expertise here. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Rob" <robert.swift@nmbs.co.uk> wrote in message news:ePFNj4tcIHA....
Out look with the ClearQuest
Sunitha
1 / 1 18 Feb 2008
We are using Clear Quest as a defect tracker in our project. The project has two groups, servicing company group and client group. I belong to the servicing company group. If any user belonging to any of the 2 group modifies anything in CQ all members will get a notification mail. (This is by using Email rule creation and configuring the user ids) Client is using different SMTP...
Forms link or tab In Outlook contact Properties?
Noelle
1 / 1 15 Feb 2008
I was speaking with a co-worker, who swears she has seen this done at other companies: When you click on the name of a group in the Outlook Address Book (Ex: "Help Desk") and right-click for Properties, she claims that at her last company, there was a tab in Properties that was linked to forms relevent to that group (ie: Tech support request form, equipment replace/ repair forms etc)....
Multiple Emails adress's
Lez
3 / 3 14 Feb 2008
Cheers Ken, Will look into the SMTP server method. Many thanks Les "Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> wrote in message news:u2hjy9kbIHA.1132@TK2MSFTNGP06.phx.gbl... > Outlook 2007 has a MailItem.SendUsingAccount property that can be set to > any existing email account set up in the current Outlook profile. You can > iterate the Accounts collection to see...
How-to Delete Large Amount of Email
Swiper the Fox
1 / 1 13 Feb 2008
I have 100,000+ messages that landed in my inbox from a single sender. If I use Outlook 2007 client, I can group by sender and still use the client. I need to delete the emails. Selecting the collapsed group and pressing shift-delete is what I was hoping to do. Unfortunately, the devs did not implement this. Rather, one must uncollapse the group first and then multi-select and...
OFFICE 2007 cant Open attachment-Urgent pls
Adamu Garba
1 / 1 11 Feb 2008
Dear all, Please can anybody help. I have office outlook 2007 and i cannot open my attachment files pls can any body help on how to resolve the problem?? Thanks in advance Adamu...
Need to Link multiple imported Contacts to Accounts in Outlook BCM
Rich
1 / 1 08 Feb 2008
I posted this in the Microsoft Small Business Specialist Newsgroup and they informed me to post this here. Please direct me to the proper Newsgroup if this isn't the proper place for this question. I have a client who keeps all their contacts on an Excel Spreadsheet. The spreadsheet has columns for Company Name, Address, ZIP, First Name, Last Name. They imported the Company Names,...
icalendar-based event does not use custom form
Tim Radford
5 / 5 08 Feb 2008
I get the message! Thanks for your reply, Sue. Tim...
How to install Microsoft Office Document Imageing on Windows 2003(x64), when ...
DR
1 / 1 07 Feb 2008
How to install Microsoft Office Document Imageing on Windows 2003(x64), when i install it the OCR in MODI doesnt work: System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {40942A6C-1520-4132-BDF8-BDC1F71F547B} failed due to the following error: 80040154. at MODIDocumentTest.Form1.Form1_Load(Object sender, EventArgs...
Telenet nieuwsgroepen mededeling: nieuwsserver adres aanpassen/Attention: mod...
info@telenet.be
1 / 1 29 Jan 2008
Beste klant, Telenet heeft een migratie gedaan van haar nieuwsservers. Wat betekent dit concreet voor jou als gebruiker? Er verandert niets aan de service, maar om verder gebruik te maken van de Telenet nieuwsgroepen service moet je bij de instellingen van je nieuwslezer het adres van de nieuwsserver veranderen van news.telenet.be of newsbin.telenet.be in newsgroups.telenet.be....
Stop baby eating in CHINA
LPC
1 / 1 29 Jan 2008
Eat dogs, cats and baby look below: http://z.about.com/d/urbanlegends/1/0/v/7/eating_babies1.jpg http://z.about.com/d/urbanlegends/1/0/w/7/eating_babies2.jpg http://888.rockin.net/propaganda-of-baby-eating/rumour.htm#true_story info@imagiam.com...
Boycott China Olympic- Comeon!
Imagiam
1 / 1 28 Jan 2008
So many dogs and cats being killed and ate in China, why you still support olympic?...
Boycott China Olympic- Comeon!
Imagiam
1 / 1 28 Jan 2008
So many dogs and cats being killed and ate in China, why you still support olympic?...
Instalacion Chip Consolas Wii Playstation 2 - Xbox360 - Playstation 3 - Ps2 Ps3
instalacion chip consola
1 / 1 28 Jan 2008
<HTML> <HEAD> <META NAME="GENERATOR" Content="Microsoft DHTML Editing Control"> <TITLE></TITLE> </HEAD> <BODY> <P>&nbsp;</P> </BODY> </HTML>...
Microsoft Outlook Object Library
Ken Slovak - [MVP - O...
2 / 2 28 Jan 2008
Your options are limited to those listed at http://www.outlookcode.com/article.aspx?id=52. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "spark77" <spark77@discussions.microsoft.com> wrote in message...
Problem opening .OFT file
Sue Mosher [MVP-Outlook]
2 / 2 23 Jan 2008
Beginning with Outlook 2003 SP2, users can work with most .oft form templates files only by opening the template from the Tools | Forms | Choose Form dialog, browsing for User Templates in File System. This means that if the .oft file is sent as a message attachment, the user must save it to the local hard drive first. The article at http://support.microsoft.com/?id=907985 explains this...
creating an Office 2007 template
Jessica Pitz
3 / 3 23 Jan 2008
"Daniel Bass" <danREMOVEbass@blueCAPSbottle.comFIRST> schrieb im Newsbeitrag news:OrJ0QJKHIHA.280@TK2MSFTNGP03.phx.gbl... > > I'm a C# developer, and have been asked to looked into the "best" way of > creating a quote template for my business that will allow users, when > creating a new document based on my quote, to open a document that has a > form with some details (quote number,...
Forever
Wikipedi
1 / 1 20 Jan 2008
<HTML> <HEAD> <META NAME="GENERATOR" Content="Microsoft DHTML Editing Control"> <TITLE></TITLE> </HEAD> <BODY> <P>&nbsp;</P> </BODY> </HTML>...
MAPIReadMail and MapiFileDesc structure
Adam Stachura
1 / 1 18 Jan 2008
Hello! I have a following problem: While I call MAPIReadMail with a parameter MapiPeek MAPI32 saves attachments into temporary directory and creates structures MapiFileDesc: public class MapiFileDesc { public int reserved; public int flags; public int position; public string path; public string name; public IntPtr type; } When I read this structure I see that the name...
windowless usercontrol and focus issue
Ken Slovak - [MVP - O...
4 / 4 14 Jan 2008
I've never tried what you're doing, but my gut feeling is that you're going to have to just put your user control in a form (VB not Windows Forms) or make it a windowed control. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm...
Outlook wont open mdb file as attachment - any workaround?
Rich
2 / 2 14 Jan 2008
Incase anyone cares, I ended up zipping the mdb and sent it as a zip file. That did work. "Rich" wrote: > I need to send an mdb file in outlook to a recipient who also has outlook. I > got a message that the file was unsafe and may not be openable in Outlook - > which was the case. Is there a way to get around this? > > Thanks. > Rich...
Active content that can not be displayed in the Reading Pane?
Bruno
1 / 1 14 Jan 2008
Either after opening Outlook, or after having republished my custom form, the very first email that is sent activating RMS is received by the addressee a rpmsg attachment. The second time the message is properly displayed. It is as if the RMS client is not properly activated on the first message, but starting with the second message. And it depends only on the sender, not the addressee. Weird!...
custom appointment form issues
Sue Mosher [MVP-Outlook]
9 / 9 14 Jan 2008
Sounds like a good solution! -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Joeri Sebrechts" <joeri.sebrechts@gmail.com> wrote in message news:46b637a7-43f3-400e-b696-8a631063e98e@j20g2000hsi.googlegroups.com... >I figured out as much. I've changed it...
Active content that can not be displayed in the Reading Pane?
Bruno
1 / 1 11 Jan 2008
By the way, I am not in the actual process of developing this custom form. I just want to validate that it can be done. Since asking Microsoft did not get us anything but the casual "of course! it is possible," I decided to try to build a test drive by myself. That's why I run into troubles :? But I shall find my way out with your help :d...
my sister and a dog humping
yenc@yenc-news.co.uk
1 / 1 09 Jan 2008
...
How to sort messages from multiple MAPI folder
Ken Slovak - [MVP - O...
2 / 2 07 Jan 2008
Create a search folder if the store allows it and all the folders are in the same store. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "ram" <ram@discussions.microsoft.com> wrote in message...
Edit the Contact Form in Outlook 2007
Sue Mosher [MVP-Outlook]
2 / 2 20 Dec 2007
That's normal and expected behavior, by design. You can either edit the form as you see it there or consider using the new "form regions" in Outlook 2007 (see http://www.outlookcode.com/news.aspx?id=22) to duplicate the look of the standard contact form. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators...
2003 Code throws error in 2007 - CreateObject
Jeff Popova-Clark
3 / 3 20 Dec 2007
My IT crowd couldn't find a problem, but I'll tell you how I got around it: I used the following code instead: Sub Open_SaveItem() Dim objApp As Outlook.Explorer Dim objSelItem As Object Dim objSelection As Outlook.Selection Dim strSubject As String Dim dteDate As Date Dim dteTime As Date Set objApp = Application.ActiveExplorer Set objSelection = objApp.Selection...
Problems with automation in Outlook 2007
Sue Mosher [MVP-Outlook]
4 / 4 18 Dec 2007
Sorry, I missed the o/s reference. Maybe it's time to run Help | Office Diagnostics? Or install SP1? -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Magnus" <Magnus@discussions.microsoft.com> wrote in message...
Michael Lalonde
lalonm@nospamaol.com
1 / 1 16 Dec 2007
atewjar The message is a test post. It did not originate from AOL. If it appears in a non-test group, I apologize. I am testing my NNTP setting. mike lalonde michael lalonde sudbury ontario angela legrow tom tunks blaine tessier sharon mulholland duncan tessier carole heinz vicky lalonde darryl lalonde danny lalonde rachel tessier marlene lalonde becky urwin...
All times are in (US) Eastern Daylight Time (GMT -4:00)