上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页
摘要: private void MainPictureBox_Paint(object sender, PaintEventArgs e) { // board.Location=new Point(scaleHeight,scaleHeight); Graphics g = e.Graphics; int width = this.Width; int height = 50; Font font = new Font("Arial", 7); //Draw X for (int i = 0; i <= width; i++) { SizeF size = g.Measu 阅读全文
posted @ 2011-05-18 14:45 许明吉博客 阅读(3916) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2011-05-17 10:08 许明吉博客 阅读(378) 评论(1) 推荐(0) 编辑
摘要: // 连接private OleDbConnection oleConnection1 = null;public static string connection { get {return"Data Source=dormMIS.mdb;Jet OLEDB:Engine Type=5;Provider=Microsoft.Jet.OLEDB.4.0;";} } DataSet ds //数据源this.oleConnection1=new OleDbConnection(DormMIS.database.dbConnection.connection); // 指定数据 阅读全文
posted @ 2011-05-10 17:40 许明吉博客 阅读(593) 评论(0) 推荐(0) 编辑
摘要: agsXMPP下载http://www.ag-software.de/matrix-xmpp-sdk/download/http://www.ag-software.de/2008/10/30/agsxmpp-11-released/agsXMPP致力于创建一个轻量、快速的跨平台类库,用于XMPP协议。通过下面的三项技术,agsXMPP达到了这个目标。异步套接字与工厂模式结合的快速XML解析器自有的轻量级XML Dom,作为所有agsXMPP协议类的基础示例代码:XmppClientConnection xmpp = new XmppClientConnection("jabber. 阅读全文
posted @ 2011-05-10 17:12 许明吉博客 阅读(3033) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2011-05-10 16:19 许明吉博客 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2011-05-06 17:45 许明吉博客 阅读(322) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Drawing2D;namespace TestDataGridViewRowStyle{ public partial class Form1 : Form { //定义两种行样式 private DataGridViewCellStyle 阅读全文
posted @ 2011-05-06 17:37 许明吉博客 阅读(8902) 评论(0) 推荐(0) 编辑
摘要: //不显示出dataGridView1的最后一行空白 dataGridView1.AllowUserToAddRows=false; 阅读全文
posted @ 2011-05-06 17:31 许明吉博客 阅读(10178) 评论(0) 推荐(0) 编辑
摘要: GO TO TOP1) 使用 ReadOnly 属性摇∪绻M珼ataGridView 内所有单元格都不可编辑, 那么只要:[VB.NET]' 设置 DataGridView1 为只读DataGridView1.ReadOnly = True[C#]// 设置 DataGridView1 为只读DataGridView1.ReadOnly = true;此时,用户的新增行操作和删除行操作也被屏蔽了。摇∪绻M珼ataGridView 内某个单元格不可编辑, 那么只要:[VB.NET]' 设置 DataGridView1 的第2列整列单元格为只读DataGridView1.Colum 阅读全文
posted @ 2011-05-06 14:58 许明吉博客 阅读(8847) 评论(0) 推荐(0) 编辑
摘要: ) 行、列的隐藏[VB.NET]' DataGridView1的第一列隐藏DataGridView1.Columns(0).Visible = False' DataGridView1的第一行隐藏DataGridView1.Rows(0).Visible = False[C#]// DataGridView1的第一列隐藏DataGridView1.Columns[0].Visible = false;// DataGridView1的第一行隐藏DataGridView1.Rows[0].Visible = false;2) 行头、列头的隐藏[VB.NET]' 列头隐藏D 阅读全文
posted @ 2011-05-06 14:54 许明吉博客 阅读(86001) 评论(1) 推荐(6) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页