CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - GUI
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - GUI - List
[
Process-Thread
]
MiniGUI-DOS-31
DL : 0
一个清华的老教授写的如何在dos下实现windows界面的一个程序源代码-an old professor of Qinghua wrote how dos under windows interface of a program's source code
Date
: 2025-12-22
Size
: 602kb
User
:
[
Process-Thread
]
SimulatorCommunication
DL : 0
MFC多线程模拟报文发送与接收,GUI线程和Worker线程的使用。-MFC Mutiple-thread Message
Date
: 2025-12-22
Size
: 6.15mb
User
:
xia
[
Process-Thread
]
CPlusPlus_Boost_Thread_Program_Guide
DL : 0
C++ Boost Thread 编程指南 标准C++线程即将到来。CUJ预言它将衍生自Boost线程库,现在就由Bill带领我们探索一下Boost线程库。 就在几年前,用多线程执行程序还是一件非比寻常的事。然而今天互联网应用服务程序普遍使用多线程来提高与多客户链接时的效率;为了达到最大的吞吐量,事务服务器在单独的线程上运行服务程序;GUI应用程序将那些费时,复杂的处理以线程的形式单独运行,以此来保证用户界面能够及时响应用户的操作。这样使用多线程的例子还有很多。 但是C++标准并没有涉及到多线程,这让程序员们开始怀疑是否可能写出多线程的C++程序。尽管不可能写出符合标准的多线程程序,但是程序员们还是会使用支持多线程的操作系统提供的多线程库来写出多线程C++程序。但是这样做至少有两个问题:这些库大部分都是用C语言完成的,如果在C++程序中要使用这些库就必须十分小心;还有,每一个操作系统都有自己的一套支持多线程的类库。因此,这样写出来得代码是没有标准可循的,也不是到处都适用的(non-portable)。Boost线程库就是为了解决所有这些问题而设计的。 -Boost thread programming guide
Date
: 2025-12-22
Size
: 14kb
User
:
dfz
[
Process-Thread
]
aaa
DL : 0
操作系统 1、 综合应用下列知识点设计并实现操作系统的进程调度:邻接表,布尔数组,非阻塞 输入,图形用户界面GUI,进程控制块,进程状态转换,多级反馈队列进程调度算法。 2、 加深理解操作系统进程调度的过程。 3、 加深理解多级反馈队列进程调度算法。 1、 综合应用下列知识点设计并实现操作系统的进程调度:邻接表,布尔数组,非阻塞 输入,图形用户界面GUI,进程控制块,进程状态转换,多级反馈队列进程调度算法。 2、 加深理解操作系统进程调度的过程。 3、 加深理解多级反馈队列进程调度算法。-operating system design process scheduling
Date
: 2025-12-22
Size
: 19kb
User
:
linxiang
[
Process-Thread
]
maze
DL : 0
三个迷宫,多线程,GUI,三个人在一个迷宫中迷了路,用多线程帮他们找到出路-3 maze, multithreading, GUI, three people lost in a maze of roads, using multiple threads to help them find a way out
Date
: 2025-12-22
Size
: 28kb
User
:
wsxg
[
Process-Thread
]
Project_305
DL : 0
this a program having GUI to calculate the weight and fatness including network and database
Date
: 2025-12-22
Size
: 2.37mb
User
:
lara
[
Process-Thread
]
testmessage
DL : 0
如果你不想使用线程,而此时你的程序又进入了死循环,但是你又想与界面实时通信,最好的办法就是在while里加入消息循环,在监控工程中此法特别有用。-this demo show you how to work about the message loop,it is very useful for operating the GUI when your program come into the while loop.
Date
: 2025-12-22
Size
: 993kb
User
:
yandong
[
Process-Thread
]
CN_Source_Files
DL : 0
This code presents how to start then control a third party GUI application from our own C++ applications, particularly the Notepad text editor which is shipped with Windows operating system.
Date
: 2025-12-22
Size
: 5kb
User
:
Prasad
[
Process-Thread
]
thread(gui)
DL : 0
用户界面线程的使用的含义和创建使用并操作-failed to translate
Date
: 2025-12-22
Size
: 55kb
User
:
zhaorui
[
Process-Thread
]
Clock
DL : 0
通过java的gui和多线程技术开发的时钟程序-clock program
Date
: 2025-12-22
Size
: 2kb
User
:
周小琦
[
Process-Thread
]
caozuoxitong
DL : 0
基于VC的哲学家算法的实现,简单的小程序,无GUI界面,多线程原理-Philosophers algorithm (VC platform)
Date
: 2025-12-22
Size
: 1kb
User
:
chenqishi
[
Process-Thread
]
6compro
DL : 0
操作系统进程控制仿真实验,实现生产者消费者过程,直观的GUI程序,方便教学-Operating system process control simulation, the process of realization of producers and consumers, intuitive GUI program to facilitate teaching
Date
: 2025-12-22
Size
: 1.82mb
User
:
wxg
[
Process-Thread
]
em_winGUIDemo
DL : 0
Keil MCB1700 emWin example - GUI Demo
Date
: 2025-12-22
Size
: 702kb
User
:
Tino
[
Process-Thread
]
GetMeUp
DL : 0
How to start GUI application service, under Windows Vista/7-How to start GUI application service, under Windows Vista/7
Date
: 2025-12-22
Size
: 1.28mb
User
:
yahosua
[
Process-Thread
]
delphi-thread-gui
DL : 0
The problem I had to solve is how to make file processing as fast as possible. Having a bunch of files ( 500 to 2000+) I have to process them (let s call this scanning ). The sequential approach (one after another) proven to be too slow. Machines have more cores today and the idea to have this file scanning running in multiple threads is something that must speed up the entire process.-The problem I had to solve is how to make file processing as fast as possible. Having a bunch of files ( 500 to 2000+) I have to process them (let s call this scanning ). The sequential approach (one after another) proven to be too slow. Machines have more cores today and the idea to have this file scanning running in multiple threads is something that must speed up the entire process.
Date
: 2025-12-22
Size
: 6kb
User
:
hieumc
[
Process-Thread
]
algpretlm
DL : 0
基于Window GUI 的汉诺塔的算法演示,仅仅是算法演示,不能控制-Based on the Window of the GUI Hanoi algorithm demo, merely algorithm demo, can t control
Date
: 2025-12-22
Size
: 67kb
User
:
engecycz
[
Process-Thread
]
shishi4
DL : 0
成绩启示与查询,visual studio开发环境,简单的GUI程序应用,功能包括录入及查询。-Results, inspiration and query, Visual Studio development environment, simple GUI program applications, including input and query functions.
Date
: 2025-12-22
Size
: 60.77mb
User
:
蚂蚁
[
Process-Thread
]
record
DL : 0
IEEE1394Diag is a GUI application that presents a graphical,
Date
: 2025-12-22
Size
: 355kb
User
:
Allej
[
Process-Thread
]
185249
DL : 0
SimpleDatabase有些关联,本意是实现SimpleDatabse的一个GUI版本,包括数据库比较,彩色语法()
Date
: 2025-12-22
Size
: 175kb
User
:
jomg+076780
[
Process-Thread
]
pafyntheses__fractal
DL : 0
QAM的调制解调完整仿真程序,带有GUI图形界面,便于观察仿真结果,推荐初学通讯的朋友下载()
Date
: 2025-12-22
Size
: 94kb
User
:
sriutkx
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.