Welcome![Sign In][Sign Up]
Location:
Search - mapi

Search list

[Windows Developvbmail

Description: VB直接调用OUTLOOK EXPRESS的方法(可以多个附件),不需要安装OFFICE。 最近做了一个项目,是老外用的。要求直接调用OUTLOOK EXPRESS,而许多老外机器都不安装OFFICE的OUTLOOK,他们习惯了OE,但发现MAILTO:不能带附件(满世界都找不到MAILTO能成功带附件的方法!)。而MAPI只能显示一个很小的图标,于是自己做了一个,可以带N个附件,附件类型不限,而创建的OE 信件,直接可以差掉,不会提示是否修改,但如果你修改了后再差的话,就会提示是否保存,非常人性化! 提供直接使用的方法。 -OUTLOOK EXPRESS direct call VB method (can be multiple attachments), do not need to install OFFICE. Recently a project is used by foreigners. Directly call OUTLOOK EXPRESS, and many foreigners do not install the machine OFFICE of OUTLOOK, they used to OE, but found MAILTO: not with attachments (all over the world can not find success with attachments MAILTO way!). The MAPI can only display a small icon, and then do a, you can take N annexes, annex type of limitation on the OE created a letter directly to poor out, will not be prompted whether to revise, but if you modify the poor and then, it will prompt to save, very user-friendly! Provide direct use.
Platform: | Size: 38912 | Author: | Hits:

[VC/MFCVC6SocketsAPI

Description: 用VC++6.0的Sockets API实现一个聊天室程序.txt   VC++对网络编程的支持有socket支持,WinInet支持,MAPI和ISAPI支持等。其中,Windows Sockets API是TCP/IP网络环境里,也是Internet上进行开发最为通用的API。最早美国加州大学Berkeley分校在UNIX下为TCP/IP协议开发了一个API,这个API就是著名的Berkeley Socket接口(套接字)。在桌面操作系统进入Windows时代后,仍然继承了Socket方法。在TCP/IP网络通信环境下,Socket数据传输是一种特殊的I/O,它也相当于一种文件描述符,具有一个类似于打开文件的函数调用-socket()。可以这样理解:Socket实际上是一个通信端点,通过它,用户的Socket程序可以通过网络和其他的Socket应用程序通信。Socket存在于一个"通信域"(为描述一般的线程如何通过Socket进行通信而引入的一种抽象概念)里,并且与另一个域的Socket交换数据。Socket有三类。第一种是SOCK_STREAM(流式),提供面向连接的可靠的通信服务,比如telnet,http。第二种是SOCK_DGRAM(数据报),提供无连接不可靠的通信,比如UDP。第三种是SOCK_RAW(原始),主要用于协议的开发和测试,支持通信底层操作,比如对IP和ICMP的直接访问。 -VC++6.0 using the Sockets API procedures for the realization of a chat room. Txt VC++ on the support network programming socket support, WinInet support, MAPI and ISAPI support. One, Windows Sockets API is TCP/IP network environment, but also for the development of Internet, the most common API. The first University of California, Berkeley campus in UNIX for the TCP/IP protocol has developed an API, the API is well-known Berkeley Socket interface (socket). Into the Windows desktop operating system in the era after the Socket method inherited. In the TCP/IP network communication environment, Socket data transmission is a special kind of I/O, it is equivalent to a file descriptor, open the file with a similar function call in-socket (). Can interpret it this way: Socket is a communication endpoint, through which users can program the Socket and other network applications of Socket Communications. Socket exist in a "communication domain" (as described in the general thread o
Platform: | Size: 3072 | Author: 李涛 | Hits:

[Communication-MobilevbSendMail

Description: 邮件的发送,界面还行,不是用mapi做的,自己发送就好-Send e-mail interface also visit mapi not do enough to send their
Platform: | Size: 154624 | Author: xukang | Hits:

[Internet-Networkcmapi

Description: A set of MFC classes to encapsulate sending and receiving mail using Simple MAPI
Platform: | Size: 55296 | Author: chako.hsu | Hits:

[Email Clientemail

Description: 利用MAPI做的发送邮件的例子-Using MAPI to send mail to do an example ..........
Platform: | Size: 63488 | Author: yu | Hits:

[Delphi/CppBuilderdelphi-developers-guide-to-xml-wordware-delphi-de

Description: Developer s Guide to Delphi Communications is another addition to the highly successful Delphi series from Wordware. This the only title on the market that provides a comprehensive overview to the communications capability of Delphi relative to the major communications protocols, such as TCP/IP, MAPI, SMTP, and HTTP. Addison-Wesley Nitty Gritty Programming Series provides the most important facts that you willneed to know to get up and running in new programming topics quickly and when you have becomeproficient you can use it as an on-going reference book for all the fundamentals. Divided into three sections, this book provides everything you need to know to startprogramming in Delphi 6.-Developer s Guide to Delphi Communications is another addition to the highly successful Delphi series from Wordware. This is the only title on the market that provides a comprehensive overview to the communications capability of Delphi relative to the major communications protocols, such as TCP/IP, MAPI, SMTP, and HTTP. Addison-Wesley Nitty Gritty Programming Series provides the most important facts that you willneed to know to get up and running in new programming topics quickly and when you have becomeproficient you can use it as an on-going reference book for all the fundamentals. Divided into three sections, this book provides everything you need to know to startprogramming in Delphi 6.
Platform: | Size: 4104192 | Author: chane | Hits:

[Windows DevelopSendToCS

Description: This a COde to Send Emails with attachement very easily. You ca use it as an executable, or in you .Net project. Create you Form, create a Button and Enjoy. System::Void MyForm::SendOrder_Click(System::Object^ sender, System::EventArgs^ e) { List<String^> Items String ^Filename Filename = IO::Path::Combine(System::Environment::GetEnvironmentVariable("TEMP"), String::Concat("FCSSystem", IO::Path::GetRandomFileName(), ".txt")) Items.Add(Convert::ToString(DateTime::Now)) for(int ni=0 ni<OrderPanel->Controls->Count ni++) { Items.Add(String::Concat(OrderPanel->Controls[ni]->Controls[0]->Name,"Q", ((NumericUpDown^)OrderPanel->Controls[ni]->Controls[1])->Value)) } IO::File::WriteAllLines(Filename, Items.ToArray()) SendFileTo::MAPI mapi mapi.AddRecipientTo("sst@fcssystem.com") mapi.AddAttachment(Filename) mapi.SendMailPopup("FCS System Order", "Please Write Your Data Here") }-This is a COde to Send Emails with attachement very easily. You ca use it as an executable, or in you .Net project. Create you Form, create a Button and Enjoy. System::Void MyForm::SendOrder_Click(System::Object^ sender, System::EventArgs^ e) { List<String^> Items String ^Filename Filename = IO::Path::Combine(System::Environment::GetEnvironmentVariable("TEMP"), String::Concat("FCSSystem", IO::Path::GetRandomFileName(), ".txt")) Items.Add(Convert::ToString(DateTime::Now)) for(int ni=0 ni<OrderPanel->Controls->Count ni++) { Items.Add(String::Concat(OrderPanel->Controls[ni]->Controls[0]->Name,"Q", ((NumericUpDown^)OrderPanel->Controls[ni]->Controls[1])->Value)) } IO::File::WriteAllLines(Filename, Items.ToArray()) SendFileTo::MAPI mapi mapi.AddRecipientTo("sst@fcssystem.com") mapi.AddAttachment(Filename) mapi.SendMailPopup("FCS System Order", "Please Write Your Data Here") }
Platform: | Size: 47104 | Author: peppebck | Hits:

[SMSMAPIExDLL

Description: 利用mapi来读取手机收件箱以及发件箱短消息的代码-Use mapi to read the phone inbox and outbox SMS code
Platform: | Size: 37888 | Author: 王均 | Hits:

[Internet-Networkremail

Description: 使用系统自带的MAPI收发邮件,就是复杂了点-use windows s MAPI to send or reget mail
Platform: | Size: 2048 | Author: bear | Hits:

[Windows CEMapirule

Description: wince 下利用mapi收发短信,截取短信。-wince under the Interception of messages using mapi
Platform: | Size: 32768 | Author: xuyue | Hits:

[BooksGetEmailSrc

Description: MFC中通过对MAPI的操作,实现对outlook exp和office outlook软件中信息的存储-MFC through the operation of the MAPI and realize outlook exp and office outlook software, information storage
Platform: | Size: 4487168 | Author: darian | Hits:

[.netMailAPI_NET_component

Description: Another mail class for mapi application from NET
Platform: | Size: 1302528 | Author: xpto nones | Hits:

[SMSMapirule

Description: Mobile短信拦截 Requirements: Visual Studio 2005, Windows Mobile 5.0 Pocket PC SDK or Windows Mobile 5.0 Smartphone SDK, ActiveSync 4.0.-Description: This sample demonstrates how to implement a MAPI Rule Client, a COM object which can handle/filter incoming MAPI messages. Of particular relevance is the implementation of IMailRuleClient and its ProcessMessage method. This method is called by the MAPI subsystem when a message matching the Rule Client抯 transport (SMS, ActiveSync, POP3) arrives. From within ProcessMessage, you can reroute messages, delete messages, parse messages and send custom data to other apps, or anything else you may need to do. Currently, only SMS is supported as a transport for Rule Clients. IMailRuleClient::Initialize must also be implemented to set message store access privileges. A Rule Client is a COM object (generally housed in a DLL) which implements the IMailRuleClient interface. In order to work properly, it must be registered in two places: 1.) Standard COM registration- HKEY_CLASSES_ROOT\CLSID
Platform: | Size: 12288 | Author: gzhard | Hits:

[GUI DevelopMFCMAPI-58810

Description: 关于mfc mapi 程序的 例子,很有用的-mfc api
Platform: | Size: 750592 | Author: yuxl | Hits:

[source in ebookMAPIm

Description: 用MAPI发送邮件 (0 folders, 5 files, 5.32 KB in total.)    MSSCCPRJ.SCC 201 bytes    新建 文本文档.txt 1.74 KB    用Mapi发送邮件.frm 2.68 KB    用Mapi发送邮件.vbp 671 bytes    用Mapi发送邮件.vbw 50 bytes 欢迎转载,但请保留出处,本文章转自[华软源码],原文链接:http://hur.cn/Soft/2010/7235.html-用MAPI发送邮件 (0 folders, 5 files, 5.32 KB, 5.32 KB in total.)    MSSCCPRJ.SCC 201 bytes    新建 文本文档.txt 1.74 KB    用Mapi发送邮件.frm 2.68 KB    用Mapi发送邮件.vbp 671 bytes    用Mapi发送邮件.vbw 50 bytes 欢迎转载,但请保留出处,本文章转自[华软源码],原文链接:http://hur.cn/Soft/2010/7235.html
Platform: | Size: 7168 | Author: janray | Hits:

[Windows DevelopMFCMapi.exe.6.0.0.1018

Description: MFC MAPI this is very good MAPI code-MFC MAPI this is very good MAPI code
Platform: | Size: 776192 | Author: peter | Hits:

[Internet-Networkmapicontrolsgridcontrols

Description: 演示接收和发送邮件需要mapi controlsgrid controls -Demonstrate need to receive and send mail mapi controlsgrid controls
Platform: | Size: 19456 | Author: name | Hits:

[Hook apiMapiMon

Description: Windows Mobile Mapi Monitoring
Platform: | Size: 376832 | Author: jhkang | Hits:

[Windows DevelopSendEMailDlg

Description: 利用了MAPI函数制作了一个发送电子邮件的程序- Has manufactured a transmission email procedure using the MAPI function
Platform: | Size: 3072 | Author: 王静 | Hits:

[OtherSendMail

Description: Send mail using MAPI
Platform: | Size: 6144 | Author: maxdemic | Hits:
« 1 2 3 4 5 67 8 »

CodeBus www.codebus.net