码迷,mamicode.com
首页 >  
搜索关键字:progress    ( 1003个结果
python print的例子
def progress(width, percent): print "%s %d%%\r" % (('%%-%ds' % width) % (width * percent / 100 * "="), percent), if percent >= 100: print...
分类:编程语言   时间:2014-06-28 20:54:33    阅读次数:294
MFC基础篇--CString的打印输出
在MFC中经常用到CString类型。也会将其打印到黑窗口上。但是直接用printf或者直接用cout都是不行的。 比如要截取字符串:“bsd_Progress\t0\t1\t2\t3\t4\t0XFF0000\tNil”之“\t”之间的字符串,当然结果为“0”,“1”,“2”,“3”,“4”,“....
分类:其他好文   时间:2014-06-28 13:41:37    阅读次数:184
Some thoughts on a progress
I can feel that I am making great progress now.. if inspected closely, it is obvious that what I'm getting through is, a newbie phase:coding details m...
分类:其他好文   时间:2014-06-25 18:23:24    阅读次数:206
CProgressCtrl::SetBarColor无效的缘由
CProgressCtrl::SetBarColor无效的缘由,苦心找了好久才发现……...
分类:其他好文   时间:2014-06-14 06:04:30    阅读次数:177
android自定义控件(三)ProgressBar
1、ProgressBar有两个进度,一个是android:progress,另一个是android:secondaryProgress。比如视频的缓存进度以及播放进度。在这里缓存的进度就可以是android:secondaryProgress,而播放进度就是android:progress。 2、...
分类:移动开发   时间:2014-06-10 13:06:31    阅读次数:370
显示进度条
static void jindutiao_ZF(Args _args){ RunBaseProgress progress; integer i,j;; i = 10000; progress = new...
分类:其他好文   时间:2014-06-08 07:24:32    阅读次数:189
Iterative Algorithm
An iterative algorithm takes one step at a time, ensuring that each step makes progress while maitining the loop invariant.A paradigm shift:View an al...
分类:其他好文   时间:2014-06-02 19:20:20    阅读次数:286
ORA-01033:ORACLE initialization or shutdown in progress
借用他人的经验客户Oracle服务器进入PL/SQL Developer时报ora-01033:oracle initializationg or shutdown in progress 错误提示,应用系统无法连接Oracle服务。经远程指导解决问题。过程如下:1、进入CMD,执行set ORAC...
分类:数据库   时间:2014-05-28 09:31:27    阅读次数:403
2F03-view-progress-indeterminate-in-title-bar
介绍在在title bar上显示indeterminate progress /* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file ...
分类:其他好文   时间:2014-05-23 00:31:27    阅读次数:352
AsyncTask类浅析
使用AsyncTask类遵守的准则:1Task的实例必须在UIthread中创建;2Execute方法必须在UIthread中调用;3不要手动的调用onPfreexecute(),onPostExecute(result)Doinbackground(params…),onProgressupdate(progress…)这几个方法;4该task只能被执行一次,否则多次调用时将会出现..
分类:其他好文   时间:2014-05-20 20:50:16    阅读次数:469
1003条   上一页 1 ... 98 99 100 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!