CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - ie
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - ie - List
[
Process-Thread
]
http_thread
DL : 0
大学作业,用GCC编写的C语言程序。创建线程达到传送本地HTML文件。把HTML文件与其文件夹放置程序相同的文件夹,打开IE输入http://127.0.0.1:8080/文件名.html 即可成功打开-University of operations, prepared by the GCC using C language program. Create threads to transmit local HTML documents. Put HTML file folder with the same procedure to place the folder, open IE input http : / / 127.0.0.1:8080 / file. html can be successfully opened
Date
: 2008-10-13
Size
: 1.37kb
User
:
ming
[
Process-Thread
]
sameprocess
DL : 0
如果您对IE4.0熟悉的话,你将知道在Internet Settings高级设置中有一个选项:“在新的进程中浏览(英文:Browse in a New Process)”,如果你把它前面的对钩去掉,然后运行IE,并打开任务管理器查看所有进程,你将会发现没有新的IExplorer.exe进程出现。反之,则新的IExplorer.exe进程出现。 当我们需要许多数据在程序实例之间共享的时候,这种能使多个实例运行在同一个进程空间的程序是非常有用的。它的实现很简单,众所周知,启动任何一个应用程序有两种途径,要么通过浏览器要么通过API调用诸如CreateProcess。首先侦察特定的窗口类是否存在,如果不存在,就创建一个新的窗口类,如果存在,那么使最近创建的进程发送一个消息到已存在的窗口,并使新近运行的实例窗口处于激活状态,先前的程序实例将启动一个单独的线程。 在此示例中,作者采用了一个MFC MDI程序,即使有多个程序实例在运行,任务管理器或者进程查看器(Process Viewer)将只会显示一个进程,当如果用WINDOWS自带程序SPY++查看,您将会发现该进程拥有许多线程,并且不同的MDI窗口集合分别属于不同的线程-seemed familiar with the case, You will know that the Internet Advanced Settings, there is a choice : "In the new process here (in English : Browse in a New Process)" If you put it right in front of the hook removed, and then run IE, and open the Task Manager View all process, You will find no new IExplorer.exe process. Instead, the new IExplorer.exe process. When we needed the procedure much of the data shared between the examples, This can run multiple instances of a process in the same space procedure is very useful. It is very simple to achieve, as we all know, launching an application of any two channels either through the browser or through API calls such as CreateProcess. First reconnaissance particular window class existence, if they do not exist, create a new window type
Date
: 2008-10-13
Size
: 46.19kb
User
:
苏语
[
Process-Thread
]
http_thread
DL : 0
大学作业,用GCC编写的C语言程序。创建线程达到传送本地HTML文件。把HTML文件与其文件夹放置程序相同的文件夹,打开IE输入http://127.0.0.1:8080/文件名.html 即可成功打开-University of operations, prepared by the GCC using C language program. Create threads to transmit local HTML documents. Put HTML file folder with the same procedure to place the folder, open IE input http :// 127.0.0.1:8080/file. html can be successfully opened
Date
: 2026-01-10
Size
: 1kb
User
:
ming
[
Process-Thread
]
sameprocess
DL : 0
如果您对IE4.0熟悉的话,你将知道在Internet Settings高级设置中有一个选项:“在新的进程中浏览(英文:Browse in a New Process)”,如果你把它前面的对钩去掉,然后运行IE,并打开任务管理器查看所有进程,你将会发现没有新的IExplorer.exe进程出现。反之,则新的IExplorer.exe进程出现。 当我们需要许多数据在程序实例之间共享的时候,这种能使多个实例运行在同一个进程空间的程序是非常有用的。它的实现很简单,众所周知,启动任何一个应用程序有两种途径,要么通过浏览器要么通过API调用诸如CreateProcess。首先侦察特定的窗口类是否存在,如果不存在,就创建一个新的窗口类,如果存在,那么使最近创建的进程发送一个消息到已存在的窗口,并使新近运行的实例窗口处于激活状态,先前的程序实例将启动一个单独的线程。 在此示例中,作者采用了一个MFC MDI程序,即使有多个程序实例在运行,任务管理器或者进程查看器(Process Viewer)将只会显示一个进程,当如果用WINDOWS自带程序SPY++查看,您将会发现该进程拥有许多线程,并且不同的MDI窗口集合分别属于不同的线程-seemed familiar with the case, You will know that the Internet Advanced Settings, there is a choice : "In the new process here (in English : Browse in a New Process)" If you put it right in front of the hook removed, and then run IE, and open the Task Manager View all process, You will find no new IExplorer.exe process. Instead, the new IExplorer.exe process. When we needed the procedure much of the data shared between the examples, This can run multiple instances of a process in the same space procedure is very useful. It is very simple to achieve, as we all know, launching an application of any two channels either through the browser or through API calls such as CreateProcess. First reconnaissance particular window class existence, if they do not exist, create a new window type
Date
: 2026-01-10
Size
: 46kb
User
:
苏语
[
Process-Thread
]
schedule1
DL : 0
采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)。 -Using the highest priority number of priority scheduling algorithm (ie the number of processors allocated to the highest priority process).
Date
: 2026-01-10
Size
: 1kb
User
:
lyh
[
Process-Thread
]
gege
DL : 0
进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 进程优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。 -The process of scheduling algorithms: the use of the highest priority number of priority scheduling algorithm (ie the number of processors allocated to the highest priority process) and first-come first-serve algorithm. Each process has a process control block (PCB) said. Process control block can contain the following information: process name, priority number, arrival time, the need for run-time, has spent CPU time, the process of state and so on. Process priority number and needs of the running time can be artificially designated in advance (you can also by the random number generator). Process input arrival time for the process time. The process of running time to time slice is calculated as a unit.
Date
: 2026-01-10
Size
: 1kb
User
:
110
[
Process-Thread
]
sameproc
DL : 0
多线程,类似于word 与 IE的功能,多线程,类似于word 与 IE的功能多线程,类似于word 与 IE的功能-multi-threads
Date
: 2026-01-10
Size
: 54kb
User
:
dmren
[
Process-Thread
]
threadx_
DL : 0
是多线程管理。可以在IE中使用。delphi-Is a multi-thread management. You can use IE.
Date
: 2026-01-10
Size
: 2kb
User
:
陈日月
[
Process-Thread
]
httpspeeder
DL : 0
httpspeed 自己写的一个 多线程加速器 使用方式: 用IE 代理127.0.0.1:1998 -httpspeed Write a multi-threaded accelerator Use: With the IE proxy 127.0.0.1:1998
Date
: 2026-01-10
Size
: 25kb
User
:
[
Process-Thread
]
Reader-Writer
DL : 0
创建一个控制台进程,此进程包含n个线程,用这n个线程来表示n个读者或写者,每个线程按相应测试数据文件(后面有介绍)的要求进行读写操作,用信号量机制分别实现读者优先和写者优先的读者-写者问题。 读者-写者问题的读写操作限制(包括读者优先和写者优先): 写-写互斥,即不能有两个写者同时进行写操作。 读-写互斥,即不能同时有一个线程在读,而另一个线程在写。 读-读允许,即可以有一个或多个读者在读。 读者优先的附加限制:如果一个读者申请进行读操作时已有另一个读者正在进行读操作,则该读者可直接开始读操作。 写者优先的附加限制:如果一个读者申请进行读操作时已有另一写者在等待访问共享资源,则该读者必须等到没有写者处于等待状态后才能开始读操作。-Create a console process, this process contains n threads, n-reader or writer to represent with n threads, each thread according to the corresponding test data files (followed by description) the requirements of the read and write operations, semaphores mechanisms, respectively reader priority and the write priority reader- writer problem. Reader- the writer to read and write operating limits (including the reader priority and priority to the writer): write- write mutually exclusive, ie can not have two writers write. Read- write mutex that is not at the same time there is a thread in another thread writing. Read- read permission, which can have one or more readers. Readers priority additional restrictions: If a reader application for the read operation has been another reader being read, the reader can directly read. Write priority additional restrictions: If a reader application for the read operation has been another writer in waiting for access to shared resources, the reader must
Date
: 2026-01-10
Size
: 7kb
User
:
何必
[
Process-Thread
]
IE--87493Catch-258073AudioYSE529939
DL : 0
源码IE 87493Catch-258073AudioYSE529939是个不错的源码,同学们用来学习是不错的选择-Source- IE audioyse529939 catch 87493-87493 is a good source, the students used to learn is a good choice
Date
: 2026-01-10
Size
: 2kb
User
:
EBW-0971
[
Process-Thread
]
brhwser__copies
DL : 0
IE浏览器下是将内容复制到Excel,需用户手动保存Excel文档 非IE浏览器可直接导出Excel文件-IE browsers are copies content to Excel, to user manual preservation Excel document the IE browser can directly export Excel file
Date
: 2026-01-10
Size
: 43kb
User
:
Spqing
[
Process-Thread
]
conarol
DL : 0
IE control bar implementation code
Date
: 2026-01-10
Size
: 15kb
User
:
cransfhr
[
Process-Thread
]
QLTools
DL : 0
自身复制,隐藏,随系统自动启动 进程列表、进程运行、进程重定向、进程管理 顶级窗口管理(隐藏、重现、关闭指定窗口),通过快捷键隐藏指定窗口 当前开放端口与进程关联 系统模块列表 后台服务管理,IE浏览器管理,系统自动登录设置,启动项目管理 汇编语言编辑、编译、链接、运行环境,窗口透明管理(ctrl+alt+u,ctrl_alt+d为增加/减少透明度),可透过窗口参考下一层窗口的源代码 计算机关闭,重新启动 无限长录音,播放 - 会话服务 服务端维护五个列表: 在线用户列表,禁言用户列表(默认为空) IP黑名单(默认为空),监控用户列表(默认为所有) 麦序列表 - 端口扫描 TELNET后门程序 屏幕捕捉,远程监控 网络唤醒 文件传输服务,上网记录,邮件发送 网络流量监视,远程开机,网络连接管理- Own copy, hidden, with the system automatically start Process list, process running, process redirection, process management Top-level window management (hide, reproduce, close the specified window), through the shortcut keys to hide the specified window The current open port is associated with the process A list of system modules Background service management, IE browser management, system automatic login settings, start the project management Assembly language editing, compiling, linking, running environment, window transparent management (ctrl+ alt+ u, ctrl_alt+ d for the increase/decrease transparency), through the window to refer to the next window of the source code The computer shuts down and restarts Unlimited recording, play - Session service Server maintenance five list: Online user list, ban user list (default is empty) IP blacklist (default is empty), monitor user list (default is all) Wheat sequence list - Port sc
Date
: 2026-01-10
Size
: 63kb
User
:
yy
[
Process-Thread
]
cln
DL : 0
Microsoft为我的电脑,IE流浏览器都设置了接口,可以的-Microsoft for my computer, IE flow browsers Settings interface, can be
Date
: 2026-01-10
Size
: 8kb
User
:
Dwggwt
[
Process-Thread
]
explorei
DL : 0
此程序用VC所编,可以使工具条右边产生动画,像IE一样,使自己的程序专业化(This program with VC, creates an animation toolbar on the right, like Internet explorer, make oneself of the program specialization)
Date
: 2026-01-10
Size
: 28kb
User
:
hxjdnq
[
Process-Thread
]
shuvdown
DL : 0
IE风格工具条,定时关机 IE style toolbar, regular shutdown(IE toolbar style, regular shutdown style IE toolbar, regular shutdown)
Date
: 2026-01-10
Size
: 28kb
User
:
ZNHX+7608
[
Process-Thread
]
yfu-This
DL : 0
这是一个IE拦截程序,大家可以试一试,有代码的呀(This is an IE interceptors, you can try to have a code)
Date
: 2026-01-10
Size
: 11kb
User
:
batdjioth
[
Process-Thread
]
srortest_cleanup
DL : 0
IEToolBand的插件实现例子,在IE界面上加入一个自定义工具栏,列举收藏夹的分类项目()
Date
: 2026-01-10
Size
: 56kb
User
:
IWM_5829
[
Process-Thread
]
jbqo0
DL : 0
这是一个IE拦截程序,大家可以试一试,有代码的呀()
Date
: 2026-01-10
Size
: 11kb
User
:
qbslyu
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.