jishi

curWorkRowNum = 0;
                int percent = 0;
                int persont = Convert.ToInt16(soureFileRowNum * 0.01);
                foreach (DataRow row in dtImport.Rows)
                {
                    if (curWorkRowNum / persont > percent)
                    {
                        percent = curWorkRowNum / persont;
                        bgProcess_Import.ReportProgress((100 * curWorkRowNum) / soureFileRowNum, workType);
                    }
                    curWorkRowNum++;

时间: 2024-11-29 12:22:23

jishi的相关文章

简易运算 (典型用户完善)

//Form1 代码 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; using System.IO; namespace 简易运算 { public partial class

我的项目 6 js实现翻牌游戏

在我的项目中需要在里面添加一个翻牌游戏,就研究了一下,在这里只实现了基本的效果.不多说,和大家分享一下. 说到翻牌游戏,大致分为以下几个步骤: 绘制正反面卡牌-------------->洗牌----------------------->翻牌------------------->翻牌判断 这里面应用的一些图片,,,,,,额额额额,,,大家就自己下两个试试,这里也提供不了...嘿嘿 1.绘制正反面卡牌 function make_deck()//生成卡组并绘制 { var i;// v

DeviceDelegateHelper.m

// //  DeviceDelegateHelper.m //  ECSDKDemo_OC // //  Created by jiazy on 14/12/5. //  Copyright (c) 2014年 ronglian. All rights reserved. // #import "DeviceDelegateHelper.h" #import "EmojiConvertor.h" #define LOG_OPEN 0 @interface Devi

Github上传更新

通过2天的时间,不停的网上找各种资料,今天下午终于可以登录上github for Windows 客户端了,,, 然后通过一整晚的摸索,也把项目上传到github里,不过不是完整的,就是部分代码(完整项目过大, 60多M,所以只上传了几个人主要部分代码).github地址:https://github.com/Cass-D/ADD 网上有很多方法贴出来怎么上传,我这里也随便给出一个网站: http://blog.csdn.net/loveway_/article/details/47315423

Python学习日志2语法-20150716

先导日志篇: 1.变量定义 直接定义: a=10 b=23 c=a+b print(c) 2.判断语句: #coding = utf-8 Python并不能够识别Utf-8,所以要注释一下 score=90 if score >=70 : print("nice") elif score >=60 : print("及格") elif score >=30; print ("不及格") else print("很差&q

查看mysql库大小,表大小,索引大小

说明: 通过MySQL的 information_schema 数据库,可查询数据库中每个表占用的空间.表记录的行数:该库中有一个 TABLES 表,这个表主要字段分别是: TABLE_SCHEMA : 数据库名TABLE_NAME:表名ENGINE:所使用的存储引擎TABLES_ROWS:记录数DATA_LENGTH:数据大小INDEX_LENGTH:索引大小 其他字段请参考MySQL的手册,查看一个表占用空间的大小,那就相当于是 数据大小 + 索引大小 . 查看所有库的大小 mysql> u

策略模式(完善)

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 简易运算 { public interface ODD { int members(int a, int b); } class Class2 : ODD { public int members(int a, int b) { return a + b; } } class sub : ODD { pub

[非凡程序员]倒计时 uiimage uiDatePicker NSDate

//倒计时 @implementation ViewController - (void)viewDidLoad {     [super viewDidLoad];     [NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(jishi) userInfo:nil repeats:YES]; } - (void)didReceiveMemoryWarning {     [super didRe

html5学习笔记(4)

XHTML可扩展的超文本标记语言 文档声明: DTD: html5与html4的区别 html5新增的元素: 结构元素:section ,article, aside, header,hgroup,footer, nav, figure 其他元素: video,audio, canvas, input,元素类型:Email, 全局属性: contentEditable disignMode hidden spellcheck tabindex <!DOCTYPE html> <html&