码迷,mamicode.com
首页 >  
搜索关键字:animation system    ( 52043个结果
winform学习日志(三十)----------从字符串总分离文件路径、命名、扩展名,Substring(),LastIndexOf()的使用;替换某一类字符串,Replace()的用法
一:从字符串总分离文件路径、命名、扩展名,上图二:代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using Syst...
分类:Windows程序   时间:2014-05-22 04:47:24    阅读次数:382
WinForm 进度条
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2014-05-22 02:29:34    阅读次数:504
数据库编码问题
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
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
迷上了代码!