Uploaded by MixenDixonCBB on Sep 9, 2009
This video demonstrates my VB.NET DLL for emulating Aero Peek. Download at http://caleb.cleverness.us/DLLpeek.7z . To use, import it into your project. Here's the readme:
|----------------|
| DLLPEEK README |
|----------------|
I've created this DLLpeek project so that people can implement Aero-Peek-based features in their applications. To use this in a .NET app, first add a reference to the DLLpeek.dll file. Then create a new instance of the DLLpeek.PeekLib class. You can then either use the Peek subroutine to active Aero Peek. It overloads so that you can peek windows individually or peek all windows. Finally, there is a close subroutine. To peek windows individually, you must create a DLLpeek.Structs.Window structure.
~VB.NET EXAMPLE:
Dim aeropeek As New DLLpeek.PeekLib(Me.Handle)
Dim window As New DLLpeek.Structs.Window(otherwindow.Handle)
'Individual window peek
aeropeek.Peek(window)
'All windows peek
aeropeek.Peek()
'Close peek windows
aeropeek.ClosePeek()
~C# EXAMPLE
DLLpeek.PeekLib aeropeek = new DLLpeek.PeekLib(this.Handle);
DLLpeek.Structs.Window window = new DLLpeek.Structs.Window(otherwindow.Handle);
//Individual window peek
aeropeek.Peek(window);
//All windows peek
aeropeek.Peek();
//Close peek windows
aeropeek.ClosePeek();
-
0 likes, 0 dislikes
4:06
VB.net How Can I Make Simple Dll Fileby needfullthings3,370 views
2:04
Logarithms with Exponents Practice A.by Matheatre1166 views
3:18
How to save data in a dll ( Visual Basic 2008 )by djmarkit7,966 views
1:04
Visual basic 2008 - Adding a .dllby TeamNiBiC2,719 views
5:03
Transparent cmd (command Prompt) vb.net 2008 + source codeby Slayer2310917,791 views
1:34
Referencing a Custom DLL VB.NETby digioz2,402 views
2:50
Capturing the users keyboard-input and comparing this with a given "BadWord-List"by powerdesktop1,739 views
6:00
How To Use DLL Files In Visual Basic 2008by environmentalnerd5332,080 views
1:07
Netrex browser 2.5 Previewby VBCodeMagic1,764 views
10:56
Introduction to linear programming (1/3) METAL film 4.01by METALMathProject4,590 views
7:31
NetCOBOL For Windows - Call VB.NET DLL - Using COM Interop.by AlchemySolutions578 views
7:12
Another Visual Basic 2008 GlassEffectby 00R3B0RN0010,654 views
7:18
Simple Installer using Visual Studio 2005by HilaryPike14,528 views
0:47
Quick Windows 7 Demoby ajgoodfellow86 views
1:09
Editing Resources .dll etcby stylez794,183 views
2:43
Visual Studio Tutorial - Make Application Beepby keithelder106,476 views
1:01
QuickTime 7 Pro Gratis con claveby notengonombre300027,106 views
6:49
How to make windows vista basic look like vista aero glass for FREE!!!!!by Uberflyingninja7,430 views
2:16
Visual Basic 2008 3D Flip durch Button klick Startenby Z3r0Fix1,535 views
9:55
Windows 7 beta Demo of aero peek, shake, the taskbar and more! - Part 2 - T3ch H3lpby brandoon1114,062 views
- Loading more suggestions...
Link to this comment:
All Comments (0)