Uploaded by EyeBinder on May 4, 2010
[TUTORIAL]
Hi, today I show you how to make the Windows 7 Jump list in Visual Basic 2008.
[DOWNLOAD]
DLLs Download Link:
http://www.2shared.com/file/qKCc6lK-/DLLs.html
[CODE]
Imports Microsoft.WindowsAPICodePack.Taskbar
Imports Microsoft.WindowsAPICodePack.Shell
Public Class Form1 Private Sub Form1_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown Dim MyJumpList As JumpList MyJumpList = JumpList.CreateJumpList() MyJumpList.ClearAllUserTasks() Dim Link0 As New JumpListLink("cmd.exe", "Cmd") With {.IconReference = New IconReference("cmd.exe", 0)} Dim Link1 As New JumpListLink("Calc.exe", "Calculator") With {.IconReference = New IconReference("Calc.exe", 0)} MyJumpList.AddUserTasks(Link0) MyJumpList.AddUserTasks(New JumpListSeparator()) MyJumpList.AddUserTasks(Link1) Dim Link2 As New JumpListLink("Notepad.exe", "Notepad") With {.IconReference = New IconReference("Notepad.exe", 0)} Dim Category As New JumpListCustomCategory("New Category 1") Category.AddJumpListItems(Link2) MyJumpList.AddCustomCategories(Category) Dim Link3 As New JumpListLink("mspaint.exe", "Paint") With {.IconReference = New IconReference("mspaint.exe", 0)} Category.AddJumpListItems(Link3) MyJumpList.KnownCategoryToDisplay = JumpListKnownCategoryType.Frequent MyJumpList.Refresh() End Sub
End Class
[END]
Hope you enjoy it; Thanks for watching.
-
3 likes, 1 dislikes
3:06
How to apply Visual Basic Glass Effect with more labels (only Windows 7 & Vista)by binky19962,651 views
2:50
[VB2008] Windows 7 Progressbarby EyeBinder1,319 views
1:01
[VB2008] Aero Glass Form Effectby EyeBinder18,033 views
3:36
[VB2008] Create custom componentby EyeBinder1,572 views
6:10
Visual Basic 2010 - Transparent Tabsby VBCodeMagic9,960 views
11:00
[VB.NET] Jumplists in der eigenen Anwendung (1/2)by ndrunkenTeddy486 views
1:35
Windows 7 jumplists, plus, how to add a website to your browser's jump listby pchowtoguides157 views
2:15
Working with Jump Lists- Show Me Video Exampleby TheUsingSeries1,745 views
0:42
Access Windows 7 Jump List Hidden Trickby FromStoneage2,288 views
9:14
Make Custom Button Components in VB 2008by bartjoyce8,318 views
6:31
Visual basic 2008 - Screen Recorder (save .avi)by TeamNiBiC13,827 views
2:46
Pinning a Folder to the Explorer Jump List in Windows 7.mp4by K2Enterprises482 views
0:33
Windows 7 Jump Listby bodnara20091,027 views
5:39
Visual Basic 2008 Tutorial - Screen Capture *UPDATE*by o0ogam3ro0o1,037 views
4:32
[C#.net] Flash Trainerby EternalDarknessOfLG781 views
4:09
Visual Basic - Making Aero Forms (Great Looking)by TechnologyNetwork165 views
2:25
Jump List Manager Software for Windows 7by rickmartin01257 views
4:11
C# - WebBrowser Properties and Print Dialogsby redpois0n1,208 views
12:57
Internet Explorer 9 y la barra de tareas (1/2)by esmsdn3,648 views
4:49
How to save your settings in Visual Basicby alexram13132,552 views
- Loading more suggestions...
Link to this comment:
All Comments (2)