引言:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Net;
u...
摘要:
我在网络上找到一个用oxygen控件发送短信的c#源码,试着调试了一下,发现确实不错,使用起来也简单。但美中不足的是在发送的短信中会自动加上控件公司的信息,注册后会取消这些信息,但注册需要一笔不小的费用。
我直接在nokia的网站上下载了免费的pc connectivity sdk3.0,调试后发现可以实现同样的功能。以下程序在nokia8310用红外线连接电脑下发送短信成功。......
摘要:
前篇说了.net环境下有关打印页面设置、打印机设置、打印预览对话框的实现,现在到了我们应用它们的时候了。
我们需要做下面的一些事情:
1、将上篇中写的程序输出类型改为类库并编译成printerpagesetting.dll;
2、建立c#或vb.net项目,并在项目的引用处添加引用,在弹出的对话框的.net标签中浏览并选择printerpagesetting.dll......
C#查本机地址和网段扫描
using system;
using system.collections;
【程序编程相关:
MD5算法之C#程序MD5算法描述】using system.drawing;
【推荐阅读:
C#中关于通过dataGrid更新数据库】using system.windows.forms;
【扩展信息:
.NET组件和COM组件之间的相互操作】using system.componentmodel;
using system.net;
using system.threading;
namespace windowsapplication1
{
/// <summary>
/// form1 的摘要说明.
/// </summary>
public class form1 : system.windows.forms.form
{
private system.windows.forms.button button1;
private system.windows.forms.button button2;
private system.windows.forms.button button3;
private system.windows.forms.textbox textbox1;
private system.windows.forms.textbox textbox2;
private system.windows.forms.label label1;
private system.windows.forms.textbox textbox3;
private system.windows.forms.textbox textbox4;
private system.windows.forms.textbox textbox5;
/// <summary>
/// 必需的设计器变量.
/// </summary>
private system.componentmodel.container components = null;
public form1()
{
//
// windows 窗体设计器支持所必需的
//
initializecomponent();
//
// todo: 在 initializecomponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源....
下一页 摘要:
演练:在excel中建立自定义菜单项
brian a. randell
mcw technologies, llc
september 2003
applies to:
microsoft® visual studio® tools for the microsoft office system
microsoft offi......