Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

Rated
Read 34,813 times

Contents

Related Categories

A Real-Time VB6 ActiveX News Control - Displaying the link

devarticles

Displaying the link

When the user moves their mouse over a label containing a headline, we want to make it look like an actual link. We do this by setting the colour of the links text to blue, underlining it, and setting the cursor to the hand icon.

As mentioned earlier, the hand icon is included with the support material at the end of this article. Our ActiveX control contains a picture control named "picHand". The Picture property of "picHand" is set to the location of the hand cursor file. Then, whenever the MouseMove event is triggered for a label, we set its icon to the hand, like this:

lblLink1.MousePointer = 99
lblLink1.MouseIcon = picHand.Picture


Here's how the hand looks when it is displayed over a label:

We use the hand cursor to simulate a real link

When the user actually clicks on a link, the JumpToNews function is called, with the index of the news item clicked:

JumpToNews 1

We create the JumpToNews function as a privately declared sub-routine, like this:

Private Sub JumpToNews(index As Integer)

Our JumpToNews function will actually display a new browser window. The URL of that browser window will be the URL retrieved from the arrLinks array. To actually open a browser window, we use the ShellExecute API call. The ShellExecute function is privately declared in the general declarations section of our ActiveX control, and looks like this:

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

The ShellExecute API call allows us to execute any program (or file) directly from our application. It takes six arguments, and returns a long integer value. Each of these six arguments are described below:

  1. hWnd: Handle to parent window.
  2. lpOperation: String that specifies the operation to perform
  3. lpFile: Filename to execute
  4. lpParameters: String that specifies the executable-file parameters
  5. lpDirectory: String that specifies the default directory
  6. nShowCmd: Specifies how the application is shown when it’s opened. Should be zero if lpFile is a document file.
Our call to the ShellExecute API function looks like this:

Dim openURL As Long
openURL = ShellExecute(0&, "Open", arrLinks(index - 1), "", vbNullString, 1)


This will launch a new browser window. The URL of the browser window is retrieved from the arrLinks array, based on which link was clicked.

And that's all there is to it! A couple of controls, some XML objects and an API call. Now that I've talked about the code involved in creating our ActiveX control, I will describe how to compile it and how to use it in both a web page, and a VB application.

Visit http://www.devarticles.com for more articles and free programming eBooks, or visit Socket6.com for your dose of daily developer news!

© devArticles.com 2001

Comments

  • Interesting example

    Posted by /\/\@ on 10 Jul 2002

    Good example.

    This is the first time played with any xmlhttp feeds, and found the example whet my appetite for more! The code was not quite complete, but if you are familiar with vb then you shoul...

  • hrmmmmm

    Posted by koz on 17 Apr 2002

    I've went thru the listing a few times, and it is not working for me at all....

    Things I noticed, the For loop he uses has no Next statement

    I'm probably overlooking something ....any suggestio...

  • Posted by James Crowley on 13 Apr 2002

    hmmm... yes... it seems the author hasn't released the entire VB project for the control. The hand icon will in fact be in your VB installation directory (in something like Shared/Icons/ along with th...

  • Posted by gregdirst on 12 Apr 2002

    I see the images for the article, but not any hand images.

  • Posted by James Crowley on 12 Apr 2002

    don't you see any images on http://www.developerfusion.com/show/2273/2/ ? Try hitting refresh on your browser.... :)