Visual Basic Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - MoreVisual Basic Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Avoid common pitfalls of incorporating spreadsheets into Java apps. Read about it in the free white paper: “Five Biggest Blunders when Building Spreadsheet Applications in JavaDownload Now!
  #1  
Old September 17th, 2003, 09:14 PM
ChrisTheCracka ChrisTheCracka is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 3 ChrisTheCracka User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Post Web Browser Buttons Plz Help

How do i make it so the back and froward buttons work as command_click1 () buttons can someone give me a FULL code because it always says variable undefined so someone Plz help me !

Reply With Quote
  #2  
Old September 17th, 2003, 11:45 PM
Doug G Doug G is offline
Grumpier Old Moderator
Dev Shed God 12th Plane (10500 - 10999 posts)
 
Join Date: Jun 2003
Posts: 10,560 Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level)Doug G User rank is Brigadier General (60000 - 70000 Reputation Level) 
Time spent in forums: 4 Weeks 16 h 32 m 3 sec
Reputation Power: 640
Post your code that is failing and error message(s) and maybe someone can help you get it working.

Reply With Quote
  #3  
Old September 18th, 2003, 04:18 AM
cleverpig cleverpig is offline
Contributing User
Dev Shed Beginner (1000 - 1499 posts)
 
Join Date: Jul 2003
Posts: 1,152 cleverpig User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
Send a message via MSN to cleverpig
Web Browser with Features Not Included in IE
This code, apart from providing the usual navigational gadgets of a WebBrowser control, possesses additional attributes, e.g. (1) Uses only a tiny text file as the database, rather than a wasteful big mdb file, for favorites list; (2) Shows URLs history in File menu, ready for click (URL history is kept through registry, hence no extra file required); (3) Captures images of desktop screens that you like and saves them to files while you are on Net and (4) Attempts to pinch HTML documents of a URL (to list links, to display a selected HTML document, and to print and/or save it).
sample code:http://www.freevbcode.com/code/frmWebBrowser.zip

Reply With Quote
  #4  
Old September 18th, 2003, 10:09 PM
ChrisTheCracka ChrisTheCracka is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 3 ChrisTheCracka User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Cool thanx but one thing

How do i change the toolbar that is already there i want to get ride of da email thing

Plz help

Chris

Reply With Quote
  #5  
Old September 18th, 2003, 11:53 PM
cleverpig cleverpig is offline
Contributing User
Dev Shed Beginner (1000 - 1499 posts)
 
Join Date: Jul 2003
Posts: 1,152 cleverpig User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
Send a message via MSN to cleverpig
Post your code to I can help U!

Reply With Quote
  #6  
Old September 19th, 2003, 09:04 AM
ChrisTheCracka ChrisTheCracka is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2003
Posts: 3 ChrisTheCracka User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Heres da code

I tried to get ride of it but the button is still there



Private Sub WebToolBar_ButtonClick(ByVal Button As Button)
On Error Resume Next
timer1.Enabled = True
Me.tbrProgress.Value = 90
Select Case UCase(Button.key)
Case "TBRBACK"
ctlWebBrowser.GoBack
Case "TBRFORWARD"
ctlWebBrowser.GoForward
Case "TBRSTOP"
Me.tbrProgress.Value = 0
timer1.Enabled = False
ctlWebBrowser.Stop
Me.Caption = ctlWebBrowser.LocationName
Case "TBRREFRESH"
ctlWebBrowser.Refresh
Case "TBRHOME"
ctlWebBrowser.GoHome
Case "TBRSEARCH"
ctlWebBrowser.GoSearch
Case "TBRFAVORITESLIST"
mnuFileFavoritesList_Click
Case "TBRPRINTDESKTOP"
mnuCopyPrintDesktop_Click
Case "TBRCAPDESKTOP"
mnuCopyCapDeskTop_Click
Case "TBRDISPLAYCURRHTMLDOC"
mnuLinksDisplayCurrHTMLDoc_Click
Case "TBRLISTLINKS"
mnuLinksListLinks_Click
Case "TBRDISPLAYLINKHTMLDOC"
mnuLinksDisplayLinkHTMLDoc_Click
Case "TBRPRINTHTMLDOC"
mnuLinksPrintHTMLdoc_Click
Case "TBRSAVEHTMLDOC"
mnuLinksSaveHTMLDoc_Click
Case "TBRRESTOREWEBBROWSER"
mnuLinksRestoreWebBrowser_Click
End Select
End Sub

Reply With Quote
  #7  
Old September 20th, 2003, 10:51 AM
cleverpig cleverpig is offline
Contributing User
Dev Shed Beginner (1000 - 1499 posts)
 
Join Date: Jul 2003
Posts: 1,152 cleverpig User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 6
Send a message via MSN to cleverpig
WebToolBar is the MS coolbar contorl or other control??

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreVisual Basic Programming > Web Browser Buttons Plz Help


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway