代码搜索:progress
找到约 5,291 项符合「progress」的源代码
代码结果 5,291
www.eeworm.com/read/351024/10687481
frm bear.frm
VERSION 5.00
Object = "{648A5603-2C6E-101B-82B6-000000000014}#1.1#0"; "MSCOMM32.OCX"
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F
www.eeworm.com/read/271463/10993477
txt timelog.txt
Hours worked on CitySim
11:00 Setting up initial form, getting basic tasks working
05:00 Experimenting with OpenGL graphics
12:00 Implementing GDI+ graphics, drawing city map (w/intersections) fr
www.eeworm.com/read/316861/7085773
c fork_1.c
/*fork two child progress*/
#include
#include
#include
int main()
{
pid_t child;
pid_t child1;
child=fork();
if (child==0){
printf("this is child progress
www.eeworm.com/read/462830/7195071
m statusbar.m
%Display a status/progress bar and inform about the elapsed
%as well as the remaining time (linear estimation).
%
%Synopsis:
%
% f=statusbar
% Get all status/progress bar handles.
%
% f=
www.eeworm.com/read/453478/7418971
txt readme.txt
jClientUpload 1.8
Copyright JavaZOOM 1999-2006
http://www.javazoom.net
==========================================================
jClientUpload support page :
http://www.javazoom.net/applets/jc
www.eeworm.com/read/323199/7807304
cpp progressnotetasao.cpp
/**
*
* @brief Definition of CProgressNoteTASAO
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// System includes
#include //CAknInformationNote
#include
www.eeworm.com/read/198947/7903042
m setprogbar.m
%SETPROGBAR Setup a progress bar.
% [Hf, Hs] = SETPROGBAR(S) sets up a progress bar with the
% title given in the string S.
%
% Hf is the handle to the figure and Hs is the handle to
% the status of t
www.eeworm.com/read/198947/7903106
m specestim.m
%SPECESTIM Frequency spectrum estimation.
% [Sx, Sn, Sh] = SPECESTIM(X, N, H, NN) returns the frequency
% spectrum of the transmitted data in Sx, the channel noise
% in Sn and the magnitude square fre
www.eeworm.com/read/296686/8081431
py progressdialog.py
# 11/21/2003 - Jeff Grimmett (grimmtooth@softhome.net)
#
# o Updated for wx namespace
#
# 11/30/2003 - Jeff Grimmett (grimmtooth@softhome.net)
#
# o wx.ProgressDialog appears to be broken. No a
www.eeworm.com/read/141570/12998101
txt 27.txt
不用OCX来创建自己的控件(一)
让我们以进度条<mark>Progress</mark> Bar这个通用控件(Common Control)为例。进度条是一个较为简单的Windows通用控件,它为一个操作的时间长短提供了一种图形化的显示方式。要使用该控件 一般是将Comctl32.ocx添加到工程中。Comctl32.ocx是一个超级 OCX,它本身包含了许多其它的控件。
但是如果你只想用进度条而不想用Comctl ...