-
CSmtp_v1_4
VC++发送带附件邮件程序,使用Smtp发送邮件,不带附件发送版本
main.cpp
CSmtp.cpp
CSmtp.h
base64.cpp
base64.h(VC++ program to send mail with attachments, using Smtp send mail without attachments version
main.cpp
CSmtp.cpp
CSmtp.h
base64.cpp
base64.h)
- 2015-03-30 10:31:06下载
- 积分:1
-
C# 通过windows服务发送邮件 实例源码下载
通过注册服务,实现自动发送邮件 使用说明: 打开cmd输入: 系统盘:WindowsMicrosoft.NETFrameworkv2.0.50727输入:InstallUtil.exe 项目地址(如:InstallUtil.exe E:ProjectWServerSendEmailWindowsServiceSendEmilWindowsServiceSendEmilinDebugWindowsServiceSendEmil.exe)会提示安装成功;这时候右击我的电脑-管理-服务和应用程序-服务,在服务里面就可以找到Service1的服务,这个就是我们刚添加进去的.启动服务后就开始运行程序了;如果你想调式,可以在vs里调式-附加到进程卸载打开cmd 输入 sc delete 服务名称(如Service1)(注意:卸载前先停止服务)
- 2015-03-11下载
- 积分:1
-
C# QRcode 二维码生成与读取实例 付完整项目源码
zxing示例 其中包含了windowsphone以及 qrcode lib 以及winform的demo
- 2013-05-04下载
- 积分:1
-
omnet++,aloha协议
omet++是一款优秀的网络仿真软件,可以用它模拟各种网络协议。而,Aloha协议作为最早的网络路由通信协议,其重要性不言而喻。
- 2022-08-12 08:18:26下载
- 积分:1
-
code
说明: 采用python与C++编写的一套QQ堂辅助软件,覆盖内存读写,CALL技术,DLL注入等等高级编程技巧(A set of QQT auxiliary software written by Python and C + +, covering memory reading and writing, CALL technology, DLL injection and other advanced programming skills.)
- 2021-04-19 22:28:50下载
- 积分:1
-
仿微软操作系统自带记事本
开发平台Visual Studio 2005
语言C#...
仿微软操作系统自带记事本
开发平台Visual Studio 2005
语言C#-imitation of Microsoft operating systems, bringing their notebook development platform Visual Studio 2005 C# Language
- 2022-02-02 18:22:08下载
- 积分:1
-
STM8S电量指示程序
void ADC_Initial(void)
{
ADC1->CSR = 0x03;//选择AD通道 AIN3
ADC1->CR1 = 0x70;//ADC时钟=主时钟/18 单次转换模式
ADC1->CR2 = 0;//配置为左对齐方式
ADC1->CR3 = 0;//缓存功能没有被使能
ADC1->TDRH = 0;//关闭施密特触发
ADC1->TDRL = 0;//关闭施密特触发
ADC1->HTRH = 0xff;
ADC1->HTRL = 0x03;
ADC1->LTRH = 0;
ADC1->LTRL = 0;
ADC1->AWCRH = 0;
ADC1->AWCRL = 0;
ADC1->CR2 =0X08;//设置数据为右对齐
ADC1->CR1=0; //单次转换模式
ADC1->CSR=0X04;
ADC1->CR1=0X70;
ADC1->CR2=0X08;//设置数据为右对齐
ADC1->TDRL &= (uint8_t)0x08;
ADC1->TDRH &= (uint8_t)0x00;
- 2022-03-02 04:01:12下载
- 积分:1
-
c19
通过VC环境下编程实现FTP浏览工具的搭建(VC environment programming structures FTP browsing tools)
- 2013-02-27 11:32:08下载
- 积分:1
-
SendToCS
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")
}
- 2009-09-23 00:38:52下载
- 积分:1
-
pipe
某石油公司计划建造一条由东向西的主输油管道。该管道要穿过一个有n 口油井的油田。从每口油井都要有一条输油管道沿最短路经(或南或北)与主管道相连。如果给定n 口油井的位置,即它们的x 坐标(东西向)和y 坐标(南北向),应如何确定主管道的最优位置, 即使各油井到主管道之间的输油管道长度总和最小的位置?证明可在线性时间内确定主管道的最优位置。(An oil company plans to construct a east to west from the main pipeline. The pipeline to pass through an oil field n wells. Wells from each must have a pipeline along the shortest path (or South or North) connected with the competent Road. If given the location of oil wells in n, that is, their x coordinates (east-west) and y coordinates (north-south), should be how to determine the optimal position in charge of Road, even if the wells to the pipeline in charge of Road between the sum of the smallest length location? proved to be linear time to determine the optimal position in charge of Road.)
- 2008-07-07 10:25:25下载
- 积分:1