数据库层封装

usingSystem;usingSystem.Configuration;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Collections;usingSystem.Reflection;namespaceThreeLayer.DAL...{publicabstractclassData …… 阅读全文

Discuz! 论坛 群发器 群发工具

最近闲来无事写了一个论坛群发顶贴的工具。不敢独享 拿出来和大家分享一下。还在完善中多提宝贵意见。http://download.csdn.net/source/2377225 …… 阅读全文

C# winform实现截屏,附代码

namespace Message{ partial class Form3 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; …… 阅读全文

C# Winform局域网传送文件

//发送文件 private void btn_sendFile_Click(object sender, EventArgs e) { //打开文件 OpenFileDialog dlg = new OpenFileDialog(); if (dlg.ShowDialog() = …… 阅读全文

C# 局域网聊天 发送信息

//发送大量文本消息 private void sendMessage() { if (richTextBox_send.Text.Trim().Length==0 && richTextBox_send.Rtf.IndexOf("pict")<0) { MessageBox. …… 阅读全文

图文讲解VS2010程序打包操作 安装卸载

1、在vs2010选择“新建项目”----“其他项目类型”----“Visual Studio Installerà“安装项目”:命名为:Setup1。这是在VS2010中将有三个文件夹, 1.“应用程序文件夹”表示要安装的应用程序需要添加的文件;2.“用户的‘程序’菜单”表示:应用程序安装完,用户的“开始菜单”中的显示的内容,一般在这个文件夹中,需要 …… 阅读全文