Click here to Skip to main content
15,884,353 members
Articles / Desktop Programming / ATL
Article

make a VB.Net toolbar for Internet explorer

Rate me:
Please Sign up or sign in to vote.
2.24/5 (12 votes)
22 May 2005 160K   2.8K   45   30
this source code help you to make a toolbar with Band Objects in VB.net

Sample Image - VB-IE-Toolbar.jpg

Introduction

Five days ago , i searched for an example for IE toolbars in VB.net , but i found only one source code in C# . Please take a look to this article By Pavel Zolnikov before read my article! many people wrote some thread for Pavel for some source code of bands objects in VB because there are many problem in converting this source code from C# to Vb ! im a VB programmer and when i write a new version of this toolbar in VB , i decide to put it in the Code Project for Other people that search for it later ;).

 

Some source code of IE toolbar in VB.net

 

make a refrence of bandobject.dll for your form


VB
Imports System<BR>Imports System.ComponentModel<BR>Imports 
System.Windows.Forms<BR>Imports BandObjectLib<BR>Imports 
System.Runtime.InteropServices

VB
<Guid("AE07101B-46D4-4a98-AF68-0333EA26E113"), 
_<BR>BandObjectAttribute("Shokouh Bar", BandObjectStyle.Horizontal Or 
BandObjectStyle.ExplorerToolbar Or BandObjectStyle.TaskbarToolBar, 
HelpText:="Shows bar that says hello.")> _<BR>Public Class 
SampleBars<BR>    Inherits BandObject</CODE><P></P>
<P>this application make a Persian text box for an online dictionary too 
,</P><CODE lang=vbnet>
<P>    Public Function e2f(ByVal key As Integer, ByVal shift As 
Boolean) As String<BR>        Try</P>
<P><BR>            <BR>            
Dim str As 
String<BR>            str 
= 
Chr(key)<BR>            </P>
<P>            If shift = 
False 
Then<BR>                
Dim fa() As String = {"ض", "ص", "ث", "ق", "ف", "غ", "ع", "ه", "خ", "ح", "ج", 
"چ", "ش", "س", "ي", "ب", "ل", "ا", "ت", "ن", "م", "ک", "گ", "ظ", "ط", "ز", "ر", 
"ذ", "د", "ئ", "و", "پ", "ژ", "ؤ", " 
"}<BR>                
Dim en() As String = {"Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", 
Chr(219), Chr(221), "A", "S", "D", "F", "G", "H", "J", "K", "L", Chr(186), 
Chr(222), "Z", "X", "C", "V", "B", "N", "M", Chr(188), Chr(192), Chr(220), 
"<", " 
"}<BR>                
If System.Array.IndexOf(en, str) > -1 
Then<BR>                    
e2f = fa.GetValue(System.Array.IndexOf(en, 
str))<BR>                
End If<BR>            
ElseIf shift = True 
Then<BR>                
Dim fa() As String = {"ض", "ص", "ث", "ق", "ف", "غ", "ع", "ه", "خ", "ح", "ج", 
"چ", "ش", "س", "ي", "ب", "ل", "ا", "ت", "ن", "م", "ک", "گ", "ظ", "ط", "ز", "ر", 
"ذ", "د", "ئ", "ؤ", "پ", "ژ", "ؤ", " 
"}<BR>                
Dim en() As String = {"Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", 
Chr(219), Chr(221), "A", "S", "D", "F", "G", "H", "J", "K", "L", Chr(186), 
Chr(222), "Z", "X", "C", "V", "B", "N", "M", Chr(188), Chr(192), Chr(220), 
"<", " 
"}<BR>                
If System.Array.IndexOf(en, str) > -1 
Then<BR>                    
e2f = fa.GetValue(System.Array.IndexOf(en, 
str))<BR>                
End If<BR>            End 
If</P>
<P>        Catch ex As Exception</P>
<P>        End Try</P>
<P>    End Function</P>

Please after unzipping the source file, open " Register/register.vcproj " in the notepad and replace the path of samplebars.dll whth your own path

And at last , please visit of my website , if you want to support a global movement for peace : www.BlueAppleWorld.com

enjoy it ;)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionError Not Show Toolbar in Internet Explorer Pin
headshot9x2-Jul-12 16:09
headshot9x2-Jul-12 16:09 
GeneralMy vote of 5 Pin
Global Analyser3-Nov-10 6:53
Global Analyser3-Nov-10 6:53 
GeneralRe: My vote of 5 Pin
mysteryguy10118-May-11 20:35
mysteryguy10118-May-11 20:35 
GeneralIts Not working please correct the source......... Pin
stattri20012-Dec-09 22:37
stattri20012-Dec-09 22:37 
QuestionIE Toolbar for IE and Firefox Pin
Member 35901424-Jul-08 0:52
Member 35901424-Jul-08 0:52 
Generalabou opera browser Pin
behdadb28-Apr-08 22:03
behdadb28-Apr-08 22:03 
QuestionError Compling Source Pin
RobertSoelner23-Oct-07 2:51
RobertSoelner23-Oct-07 2:51 
Questionwat could be the solution Pin
alvin05746-Jul-07 3:53
alvin05746-Jul-07 3:53 
GeneralRe: wat could be the solution Pin
lavino8-Mar-08 14:40
lavino8-Mar-08 14:40 
QuestionIE7 Pin
nitz220214-Jun-07 2:22
nitz220214-Jun-07 2:22 
Questiontoolbar not shown in IE7 Pin
ying253-Jun-07 15:35
ying253-Jun-07 15:35 
AnswerRe: toolbar not working ...... Pin
stattri20012-Dec-09 22:43
stattri20012-Dec-09 22:43 
QuestionConnect to remote database Pin
ying2523-May-07 22:17
ying2523-May-07 22:17 
Questionnot able to see the textbox on the toolbar Pin
sushmat8-Mar-07 0:20
sushmat8-Mar-07 0:20 
QuestionCould not load file or assembly Interop.SHDocVw Pin
Heppie28-Dec-06 7:09
Heppie28-Dec-06 7:09 
QuestionDoes the Toolbar requires dot net framework? Pin
shash12324-Oct-06 20:29
shash12324-Oct-06 20:29 
AnswerRe: Does the Toolbar requires dot net framework? Pin
mikeb699-Jan-07 4:36
mikeb699-Jan-07 4:36 
Generalnothing happens Pin
Messer7918-Oct-06 8:11
Messer7918-Oct-06 8:11 
GeneralRe: nothing happens Pin
guru77716-Mar-07 9:10
guru77716-Mar-07 9:10 
QuestionThe dependency 'Interop.SHDocVw' could not be found. Pin
shukku malik27-Sep-06 5:58
shukku malik27-Sep-06 5:58 
QuestionRe: The dependency 'Interop.SHDocVw' could not be found. Pin
abnncte30-Nov-06 17:27
abnncte30-Nov-06 17:27 
AnswerRe: The dependency 'Interop.SHDocVw' could not be found. Pin
gorcq26-Feb-07 15:35
gorcq26-Feb-07 15:35 
QuestionHow to install it from web site or installation package? Pin
Nhilesh B7-Sep-06 1:38
Nhilesh B7-Sep-06 1:38 
GeneralDistribution Pin
pete11ryan16-Mar-06 11:22
pete11ryan16-Mar-06 11:22 
GeneralDistributing control Pin
pete11ryan16-Mar-06 11:21
pete11ryan16-Mar-06 11:21 

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.