码迷,mamicode.com
首页 >  
搜索关键字:buddy system    ( 49281个结果
数据库编码问题
lmysql有六处使用了字符集,分别为:client 、connection、database、results、server 、system。?client是客户端使用的字符集。?connection是连接数据库的字符集设置类型,如果程序没有指明连接数据库使用的字符集类型就按照服务器端默认的字符集设...
分类:数据库   时间:2014-05-22 02:27:03    阅读次数:278
WPF 实现QQ抖动
//wpf中实现类似于qq的抖动窗效果//前段页面 //后台using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Window...
分类:其他好文   时间:2014-05-22 02:20:32    阅读次数:212
连接数据库
using System.Data.SqlClient;static void Main(string[] args) { string connString = @"Data Source=.; Initial Catalog=lh0216; User ID=s...
分类:数据库   时间:2014-05-21 21:37:07    阅读次数:369
Android多线程研究(2)——定时器
先来看一段代码: public static void main(String[] args) { new Timer().schedule(new TimerTask() { @Override public void run() { System.out.println("阳光小强"); } }, 5000); int i = 0; wh...
分类:移动开发   时间:2014-05-21 16:56:51    阅读次数:296
将矩阵中为0的元素所在行列清零
public class setZero { static void print(int [][]a){ for(int i=0;i<a.length;i++){ for(int j=0;j<a[i].length;j++){ System.out.print(a[i][j]+" "); } System.out.println(); } } /*stati...
分类:其他好文   时间:2014-05-21 16:16:56    阅读次数:252
大批量数据导入
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; us...
分类:其他好文   时间:2014-05-21 09:36:30    阅读次数:302
软考 -> 结构化综合布线系统(Structure Cabling System)
结构化布线系统 结构化综合布线系统(Structure Cabling System)是基于现代计算机技术的通信物理平台,集成了语音、数据、图像和视频的传输功能,消除了原有通信线路在传输介质上的差别。 工作区子系统 Work Location 工作区子系统是由终端到信息插座的整个区域。一个独立的需要安装终端设备的区域划分成一个工作区。工作区应支持电话、数据终端、计算机、电视机、监视器以及传感...
分类:其他好文   时间:2014-05-21 08:47:19    阅读次数:257
winform小程序------加密解密,CryptoStream()的使用
一:上图二:代码主界面代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using ...
分类:Windows程序   时间:2014-05-21 06:20:19    阅读次数:439
通过js获取DropDownList的选中项
1 2 3 4 5 20 21 22 23 24 25 26 27 28 View Code上面是前台代码,下面是后台代码. 1 public partial class WebForm1 : System.Web.UI.P...
分类:Web程序   时间:2014-05-21 05:40:54    阅读次数:321
执行SQL存储脚本
using System.Data.SqlClient;static void Main(string[] args) { string connString = @"Data Source=.; Initial Catalog=lh0216; User ID=s...
分类:数据库   时间:2014-05-21 04:18:08    阅读次数:388
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!