CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8
  1. #1
    Join Date
    Aug 2006
    Posts
    230

    looking for IE toolbars free framwork

    hello all
    i don't know if such thing exist or possible but
    can i build IE toolbar with VB ?
    Thanks

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: looking for IE toolbars free framwork

    Do you mean like a toolbar addin for IE ¿

  3. #3
    Join Date
    Aug 2006
    Posts
    230

    Re: looking for IE toolbars free framwork

    yes like google toolbar

  4. #4
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: looking for IE toolbars free framwork

    Not easy in VB 6.

    http://www.klemid.de/bar_sample.aspx

    Perhaps consider VC++ or even VB.NET

  5. #5
    Join Date
    Aug 2004
    Location
    Mumbai,INDIA
    Posts
    144

    Smile Re: looking for IE toolbars free framwork

    Hi friend,

    This is a code to create tool bar using Vb.Net I have full flagged code written in VB 6 with out OCX(Plz see attchmnet it is quit old code written in year 2005)

    Code:
     Rem Add Toolbar Control Into Form
    Rem Add Following Code
    Private Sub ToolStripButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton1.Click
    
    		ToolStripButton1.Checked = True
    		ToolStripButton3.Checked = False
    
    		Call Form1_Load(sender, e)
    
    		Me.Text += ToolStripButton1.Text
    
    	End Sub
    
    	Private Sub ToolStripButton3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton3.Click
    
    		ToolStripButton1.Checked = False
    		ToolStripButton3.Checked = True
    
    		Call Form1_Load(sender, e)
    
    		Me.Text += ToolStripButton3.Text
    
    	End Sub
    
    	Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
    		Me.Text = ""
    		Me.Text = "Form1 :- "
    
    	End Sub
    Attached Files Attached Files
    Ritik D Dodhiwala
    Software Devloper
    Mumbai,India
    [IF MY SUGGESTIONS WORKS POSITIVLY PLEASE RATE POSITIVLY ]

  6. #6
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: looking for IE toolbars free framwork

    BHO's (Browser Helper Objects) were programmed out since SP2. Too many people abused the power, and created malware. You can buy the info from MS, but you have to be able to prove that you aren't doing wrong.

    You can use some Office 2007 tools, to create a RIBBON control, though. You'd need VS 2008, though
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  7. #7
    Join Date
    Aug 2006
    Posts
    230

    Re: looking for IE toolbars free framwork

    do i need net framwork for this toolbar ?

  8. #8
    Join Date
    Aug 2004
    Location
    Mumbai,INDIA
    Posts
    144

    Thumbs up Re: looking for IE toolbars free framwork

    Quote Originally Posted by RITIK
    Hi friend,

    This is a code to create tool bar using Vb.Net I have full flagged code written in VB 6 with out OCX(Plz see attchmnet it is quit old code written in year 2005)

    Code:
     Rem Add Toolbar Control Into Form
    Rem Add Following Code
    Private Sub ToolStripButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton1.Click
     
    		ToolStripButton1.Checked = True
    		ToolStripButton3.Checked = False
     
    		Call Form1_Load(sender, e)
     
    		Me.Text += ToolStripButton1.Text
     
    	End Sub
     
    	Private Sub ToolStripButton3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton3.Click
     
    		ToolStripButton1.Checked = False
    		ToolStripButton3.Checked = True
     
    		Call Form1_Load(sender, e)
     
    		Me.Text += ToolStripButton3.Text
     
    	End Sub
     
    	Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
     
    		Me.Text = ""
    		Me.Text = "Form1 :- "
     
    	End Sub
    Hi Friend

    If u r going to use above given code u need .Net fram work

    If u use code given in Alpha Toolbar06082005.zip then No need to use .NET Frame work
    Ritik D Dodhiwala
    Software Devloper
    Mumbai,India
    [IF MY SUGGESTIONS WORKS POSITIVLY PLEASE RATE POSITIVLY ]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured