Welcome![Sign In][Sign Up]
Location:
Search - always on top

Search list

[GUI DevelopStay On Top

Description: 一个小工具代码,可使窗体始终位于桌面最前面,可设置-a small tool code will always forms at the desktop front, can be set
Platform: | Size: 3824 | Author: 唐少强 | Hits:

[TAPIdFreeze

Description: 先进的窗口管理器。可以在你的桌面上实现冻结、解冻、更名、设置总在最上面、设置不总在最上面、闪烁、最大化、最小化、聚焦、隐藏、显示和中断一个可视或不可视窗口的功能。 An advanced window manager that allows you to freeze, dfreeze, rename, set always on top, set not always on top, flash, maximize, minimize, focus, hide, show or terminate an visible or invisible window on your desktop.-Advanced window management. May realize the freeze, defrosting on yours tabletop, changes the name, the establishment always in most above, the establishment does not sum up in most above, glitters, the maximization, is small, the focusing, the hideaway, demonstrates and severs one visible or the not visible window function.
Platform: | Size: 7555 | Author: 何阳 | Hits:

[GUI DevelopStay On Top

Description: 一个小工具代码,可使窗体始终位于桌面最前面,可设置-a small tool code will always forms at the desktop front, can be set
Platform: | Size: 3072 | Author: 唐少强 | Hits:

[TAPIdFreeze

Description: 先进的窗口管理器。可以在你的桌面上实现冻结、解冻、更名、设置总在最上面、设置不总在最上面、闪烁、最大化、最小化、聚焦、隐藏、显示和中断一个可视或不可视窗口的功能。 An advanced window manager that allows you to freeze, dfreeze, rename, set always on top, set not always on top, flash, maximize, minimize, focus, hide, show or terminate an visible or invisible window on your desktop.-Advanced window management. May realize the freeze, defrosting on yours tabletop, changes the name, the establishment always in most above, the establishment does not sum up in most above, glitters, the maximization, is small, the focusing, the hideaway, demonstrates and severs one visible or the not visible window function.
Platform: | Size: 7168 | Author: 何阳 | Hits:

[Windows DevelopAlwaysOnTop

Description: 有时,应用程序的主窗口需要一直保持在桌民的所有其他窗口之上,本程序就实现这一功能。编译并运行本程序,最上面的窗体就是本程序的窗体,虽然它不处于激活状态,但它始终在最前面。-Sometimes, the application's main window needs have been kept at the table all the other window above, The procedures to achieve this function. Compile and run this program, the top of the window is the window procedure, although it is not in the activated state, But it is always in the forefront.
Platform: | Size: 35840 | Author: 梁衡升 | Hits:

[Windows CETransparentVolumeBar

Description: wince透明窗口,类似于音量控制窗体,始终置于顶层,采用区域裁减算法生成-wince a transparent window, similar to volume control form, and always placed in the top level, using regional reduction algorithm
Platform: | Size: 103424 | Author: 郭清文 | Hits:

[assembly languageclock

Description: 这是一个在ms-dos下在屏幕右上角显示时钟的程序。 程序实现了BISO功能调用读取实时时钟,并把程序 驻留内存,利用1CH中断实现电子钟计数。 本程序在masm 5.0下汇编通过,并且在ms-dos下 运行良好,实现了内存驻留,在dos做其他操作, 屏幕右上方始终显示一个绿色时间。-This is a ms-dos in the upper right corner of the screen show the clock procedures. Biso procedures to achieve a real-time clock function calls to read and process the presence of memory, the use of electronic bell interrupted 1CH count. This procedure in the next compilation through masm 5.0 and ms-dos in the run well, the presence of a memory, in the dos and do other operations, always at the top right of the screen shows a green time.
Platform: | Size: 2048 | Author: | Hits:

[OS Develop100

Description: 将一个窗口始终放在最前面 将一个窗口始终放在最前面-Will be a window always on top of a window always on top
Platform: | Size: 2048 | Author: 江河 | Hits:

[OS programMouseMeter

Description: 这是个基于VB版的鼠标钩子程序,程序适时跟踪计算鼠标坐标、移动距离、像素转换等,还可以设置窗口永远在最上层,不遮挡!-This is based on the VB version of the mouse hook procedure, timely follow-up procedures for calculating the coordinates of the mouse, move distance, pixel conversion, you can set the window always on top, would not block!
Platform: | Size: 3072 | Author: 182 | Hits:

[ApplicationsSuper_On_Top

Description: always on top, it s just common but super on top is very great. that s only our program is always on top of other application. not only on the top but just only our application can use. i think its very gud for all of u to make security programm or billing application. this application just only need another file library. but dont worry coz this file is very small of size, so its very easy to included our application. -always on top, it s just common but super on top is very great. that s only our program is always on top of other application. not only on the top but just only our application can use. i think its very gud for all of u to make security programm or billing application. this application just only need another file library. but dont worry coz this file is very small of size, so its very easy to included our application.
Platform: | Size: 4096 | Author: zee | Hits:

[GUI Developclock

Description: 桌面透明的小时钟,始终在最上层显示,能够显示日期,可以修改成多种样式!全是拿代码画出来的!-Transparent desktop clock, always on top shows that can show the date, can be modified into a variety of styles! All get painted by the code!
Platform: | Size: 185344 | Author: dsfa | Hits:

[Windows DevelopWin32APIandPB

Description: 1. 如何使PB窗口总在最上层 通过SetWindowPos函数吧窗口的显示层次修改为HWND_TOPMOST,就可以使指定窗 口永远不会被其他窗口覆盖,该函数声明为: Function Long SetWindowPos(Long hwnd, Long ord, Long x, Long y, Long dx, Long dy, Long uflag) Library “user32.dll” 参数1为要顶层显示的窗口句柄,参数2指定显示的层次,参数7为附加选项,其余 参数指定窗口位置和大小,均可忽略。在窗口的Open或Activate事件中加入如下 函数调用: SetWindowPos(Handle(This),-1,0,0,0,0,3) 参数2取-1表示在最顶层显示窗口,取1表示在最底层显示;最后一个参数若取1, 表示窗口大小保持不变,取2表示保持位置不变,因此,取3(=1+2)表示大小和 位置均保持不变,取0表示将窗口的大小和位置改变为指定值。-1. How to make the window always on top of PB SetWindowPos function bar by the window display level was revised to HWND_TOPMOST, you can make the specified window I will never be covered by other windows, this function is declared as follows: Function Long SetWindowPos (Long hwnd, Long ord, Long x, Long y, Long dx, Long dy, Long uflag) Library "user32.dll" Parameters of an order to show top-level window handle, the parameter 2 shows the level of the specified parameter 7 as an additional option, the rest of Parameter specifies the window position and size, can be ignored. Open the window or the Activate event by adding the following Function call: SetWindowPos (Handle (This),-1,0,0,0,0,3) -1 Means that two parameters take the most top-level display window, check that at the bottom of a display the last argument, if taken one, Indicated that the window size remains unchanged, taking two positions that remain unchanged, therefore, take 3 (= 1+2) that the size and Position r
Platform: | Size: 2048 | Author: 杨四 | Hits:

[Windows DevelopStayOnTop

Description: The Form always on Top.
Platform: | Size: 205824 | Author: raimund | Hits:

[Otherontop

Description: 调用dll函数来将一个窗口始终放在最前面-Call the dll function to be a window always on top
Platform: | Size: 2048 | Author: aj | Hits:

[Windows DevelopMine

Description: MyModule has the following functions/subs Subs: OpenApp(FileName as string) * Opens an application with the filename specified * Use: OpenApp(FileName) DisableCtrlAltDelete(bDisabled As Boolean) * Disables Control Alt Delete Breaking as well as Ctrl-Escape * Use: Call DisableCtrlAltDelete(Boolean) Center(FormName as form) * Centers the specified form * Use: Center(FormName) AlwaysOnTop(FormName as Form, bOnTop as boolean) * Sets the named form as always on top * Use: Call AlwaysOnTop(True) ExitWindows(Mode) * Shutdown or reboots windows * Use: ExitWindows(shutdown) * ExitWindows(reboot) MakeMeService() * Hide your program in the list of Control Alt Delete UnMakeMeService() * Re-show your program in the list of Control Alt Delete-MyModule has the following functions/subs Subs: OpenApp(FileName as string) * Opens an application with the filename specified * Use: OpenApp(FileName) DisableCtrlAltDelete(bDisabled As Boolean) * Disables Control Alt Delete Breaking as well as Ctrl-Escape * Use: Call DisableCtrlAltDelete(Boolean) Center(FormName as form) * Centers the specified form * Use: Center(FormName) AlwaysOnTop(FormName as Form, bOnTop as boolean) * Sets the named form as always on top * Use: Call AlwaysOnTop(True) ExitWindows(Mode) * Shutdown or reboots windows * Use: ExitWindows(shutdown) * ExitWindows(reboot) MakeMeService() * Hide your program in the list of Control Alt Delete UnMakeMeService() * Re-show your program in the list of Control Alt Delete
Platform: | Size: 1024 | Author: kheo | Hits:

[e-languagewindows

Description: 易语言窗口总在最前很好搞,但是总在最后怎么做呢,呵呵也很简单。-Easy language window always on top good practice, but how to do it in the final total, Oh is simple.
Platform: | Size: 68608 | Author: huangkate | Hits:

[e-languageckzd

Description: 易语言—窗口总在最前实例 有选择框方式,和按钮实现方式-E language- an instance of the window always on top
Platform: | Size: 2048 | Author: AChen | Hits:

[Process-ThreadKillExe

Description: Kill当前正在运行的进程。功能相当于任务管理器。 1.列表框显示正在运行的进程.(Process) 2.Kill正在运行当中的进程,加入选择程序提示. 3.程序启动时在任务栏上隐藏本程序. 4.About对话框. 5.Kill进程之后可以刷新进程列表. 6.屏蔽系统热键功能. 7.Beauty按钮调用: 1.CreateProcess函数调用Notepad,用TerminateProcess函数关闭. 2.用Winexec调用Windows自带的计算器. 3.加入关闭计算机选项. 8.本程序设为只可以运行一次. 9.将本程序加入系统托盘区. 10.使窗口总在最前. 11.加入程序启动画面.-Kill the currently running process. Function is equivalent to Task Manager. 1. The list box displays the running processes. (Process) 2.Kill the process of running them, prompted the selection process. 3. Program starts in the task bar hide this program. 4.About dialog box. 5.Kill process can then refresh the process list. 6. shielding system hotkeys. 7.Beauty button to call: 1.CreateProcess function call Notepad, with TerminateProcess function turned off. 2. Winexec called Windows comes with a calculator. 3. join shut down the computer selection Item 8.. This program is set to only run once. 9. will be added to the system tray area of the program. 10. to make the window always on top. 11. add a splash screen.
Platform: | Size: 32768 | Author: Domain | Hits:

[Button controltopWinFormV2.0

Description: 浮舟窗口置顶工具V2.0,可以让任意程序窗口总是在屏幕顶端显示,例如当您需要观看网页视频又要进行其它操作时,可以把视频窗口置顶,这时就可以边操作边看视频。这款小工具绝对可以让您工作娱乐两不误。第二版修改了第一版中存在的小问题,感谢给我提出宝贵意见的网友们,欢迎广大网友继续使用。-Pontoon window top tool V2.0, can make any application window always on top of the screen display, for example, when you need to watch web video but also for other operations, the video window can be top, then you can look to the side of operation video. This gadget allows you to work and play is absolutely correct. Revised second edition of the first edition there is a small problem, thanks for giving me valuable advice of friends are welcome to continue to use the majority of users.
Platform: | Size: 36864 | Author: 浮舟 | Hits:

[JSP/JavaJS-Div-Always-On-Top

Description: Javascript Always On Top Div
Platform: | Size: 45056 | Author: xtin | Hits:
« 12 3 4 »

CodeBus www.codebus.net