Click here to Skip to main content
16,005,121 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionSub Procedures Pin
amaneet30-Mar-07 23:21
amaneet30-Mar-07 23:21 
AnswerRe: Sub Procedures Pin
DA_Loring31-Mar-07 2:54
DA_Loring31-Mar-07 2:54 
Questionproblem Pin
amaneet30-Mar-07 21:48
amaneet30-Mar-07 21:48 
AnswerRe: problem Pin
nlarson1131-Mar-07 3:21
nlarson1131-Mar-07 3:21 
QuestionMap objects in vb.net 2005 Window Applications Pin
amaneet30-Mar-07 21:02
amaneet30-Mar-07 21:02 
AnswerRe: Map objects in vb.net 2005 Window Applications Pin
Dave Kreskowiak31-Mar-07 7:38
mveDave Kreskowiak31-Mar-07 7:38 
QuestionHow do you add a favicon to IE context menu? Pin
wjinks30-Mar-07 20:49
wjinks30-Mar-07 20:49 
AnswerRe: How do you add a favicon to IE context menu? [modified] Pin
The ANZAC30-Mar-07 22:40
The ANZAC30-Mar-07 22:40 
This will create the registry key in the correct location, However as far as launching your application using the context menu item goes, i cannot help you:
            Dim regkey As RegistryKey 'imports microsoft.win32<br />
            regkey = Registry.CurrentUser.OpenSubKey("SOFTWARE\MICROSOFT\INTERNET EXPLORER\MENUEXT", True)<br />
            regkey.CreateSubKey("Test") 'You can put whatever you want here<br />
            regkey.Close()<br />
<br />
            regkey = Registry.CurrentUser.OpenSubKey("SOFTWARE\MICROSOFT\INTERNET EXPLORER\MENUEXT\TEST", True)<br />
            regkey.SetValue("", "res://C:\test.txt", RegistryValueKind.String) 'you can change the path<br />
            regkey.SetValue("Contexts", "3", RegistryValueKind.DWord)<br />
            regkey.Close()


Note: Your path will need to be the install directory of the application.

This link may help with the launch component:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1161363&SiteID=1

Posted by The ANZAC

Questionserialization Pin
amaneet30-Mar-07 20:46
amaneet30-Mar-07 20:46 
AnswerRe: serialization Pin
nlarson1131-Mar-07 3:25
nlarson1131-Mar-07 3:25 
AnswerRe: serialization Pin
Dave Kreskowiak31-Mar-07 7:36
mveDave Kreskowiak31-Mar-07 7:36 
GeneralRe: serialization Pin
GaryAW31-Mar-07 14:17
GaryAW31-Mar-07 14:17 
QuestionRichtextbox region collapsing control Pin
Enriad30-Mar-07 20:17
Enriad30-Mar-07 20:17 
Questiondsn in vb.net 2005 Window application Pin
amaneet30-Mar-07 19:50
amaneet30-Mar-07 19:50 
AnswerRe: dsn in vb.net 2005 Window application Pin
Dave Kreskowiak31-Mar-07 7:30
mveDave Kreskowiak31-Mar-07 7:30 
Questionhelp me Pin
phowarso30-Mar-07 18:35
phowarso30-Mar-07 18:35 
AnswerRe: help me Pin
Christian Graus30-Mar-07 18:58
protectorChristian Graus30-Mar-07 18:58 
QuestionSplitting an Image Pin
The ANZAC30-Mar-07 12:45
The ANZAC30-Mar-07 12:45 
AnswerRe: Splitting an Image Pin
Christian Graus30-Mar-07 18:59
protectorChristian Graus30-Mar-07 18:59 
GeneralRe: Splitting an Image Pin
The ANZAC30-Mar-07 20:05
The ANZAC30-Mar-07 20:05 
QuestionFinding an sql server script file to execute Pin
steve_rm30-Mar-07 11:34
steve_rm30-Mar-07 11:34 
AnswerRe: Finding an sql server script file to execute Pin
Dave Kreskowiak30-Mar-07 11:49
mveDave Kreskowiak30-Mar-07 11:49 
GeneralLooking for VB.net Programmer for robotics application. [modified] Pin
bbonilla30-Mar-07 10:09
bbonilla30-Mar-07 10:09 
GeneralRe: Looking for VB.net Programmer for robotics application. Pin
Dave Kreskowiak30-Mar-07 11:47
mveDave Kreskowiak30-Mar-07 11:47 
GeneralRe: Looking for VB.net Programmer for robotics application. Pin
bbonilla30-Mar-07 12:00
bbonilla30-Mar-07 12:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.