Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > General > calling specific internet explorer address on my vb application


Reply
 
Thread Tools Display Modes
  #1  
Old 02-23-2005, 08:42 PM
kornflakes kornflakes is offline
Centurion
 
Join Date: Dec 2003
Location: Dagupan City, Philippines
Posts: 199
Lightbulb calling specific internet explorer address on my vb application


hello!

how could i redirect my users to go to my profiles when they click my menu about the author? i want them to redirect the users on my homepage @ www.homepagesomething.com

is that possible? calling internet explorer on my vb application? help me please
Reply With Quote
  #2  
Old 02-23-2005, 09:13 PM
Lintz's Avatar
Lintz Lintz is offline
Senior Contributor
 
Join Date: Mar 2003
Location: The 19th Hole
Posts: 989
Default

Yes, it's possible

Code:
Option Explicit Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long Const SW_SHOWNORMAL = 1 Private Sub Command1_Click() ShellExecute Me.hWnd, "Open", "http://www.lintz.netfirms.com", 0, 0, 3 End Sub
Reply With Quote
  #3  
Old 02-23-2005, 11:09 PM
kornflakes kornflakes is offline
Centurion
 
Join Date: Dec 2003
Location: Dagupan City, Philippines
Posts: 199
Default

whoe!!!!!!!!!!!!!!!!!!!! that was awesome!!!!!!!!!!!!! your the best dude!!!!!!!! im so amazed! you rock
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->