登录
首页 » C# » myqq 聊天项目完整源码 含数据库

myqq 聊天项目完整源码 含数据库

于 2013-11-24 发布
0 221
下载积分: 1 下载次数: 0

代码说明:

myqq 聊天项目完整源码 含数据库

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • c算法 大全《常用算法程序集(第四版)》
    这份资料是第四版的C 常用算法程序集,方便初学者学习。
    2018-04-16下载
    积分:1
  • 抽奖程序 flash源码下载
    抽奖程序 flash源码下载
    2014-01-02下载
    积分:1
  • Modbus连接上位机,接收数据
    连接上位机,接受数据
    2020-11-28下载
    积分:1
  • 仓库管理系统源码(含数据库以及视频讲解)
    仓库管理系统源码(含数据库以及视频讲解)
    2020-05-25下载
    积分:1
  • C# 批量数据上传客户端例子源码 FastDFS
    C# 批量数据上传客户端例子源码 FastDFS
    2014-10-23下载
    积分:1
  • C# pdfdemo 示例源码(itextsharp.dll )
    itextsharp.dll 的使用 包括了简单3个实例
    2017-01-13下载
    积分:1
  • 对图像做空间滤波
    对图像做空间滤波
    2015-07-02下载
    积分:1
  • C# 进程间通信(IPC, Inter-Process Communication) 实例源码
    实现了 不同winform窗体之间 发送消息,即:不同的exe应用程序之间的通信
    2019-07-10下载
    积分:1
  • unity3d 实现网络通信
     实现untiy内 get post 网络请求
    2016-04-18下载
    积分:1
  • 关于datagridview控件的简单例子,更容易理解一些
    using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace DataGridViewSample{ public partial class Form1 : Form { public static List Tests = new List(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.dataGridView1.DataSource = Tests; } private void button1_Click(object sender, EventArgs e) { frmAdd form = new frmAdd(null); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } private void button2_Click(object sender, EventArgs e) { if (this.dataGridView1.SelectedRows != null) { frmAdd form = new frmAdd(new Test( Convert.ToInt32(this.dataGridView1.SelectedRows[0].Cells[0].Value), Convert.ToDecimal(this.dataGridView1.SelectedRows[0].Cells[1].Value), Convert.ToDateTime(this.dataGridView1.SelectedRows[0].Cells[2].Value), this.dataGridView1.SelectedRows[0].Cells[3].Value.ToString())); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } } private void button3_Click(object sender, EventArgs e) { //使用前面示例中的代码,用DataGridView或者List来做导出都是可以的 } } public class Test { public Test(int id, decimal voltage, DateTime record, string remark) { ID = id; Voltage = voltage; Record = record; Remark = remark; } public int ID { get; set; } public decimal Voltage { get; set; } public DateTime Record { get; set; } public string Remark { get; set; } }}
    2015-06-11下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载