A Real-Time VB6 ActiveX News Control

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.

You might also like...

Comments

About the author

Mitchell Harper Australia

Visit http://www.devarticles.com for more articles and free programming eBooks, or visit Socket6.com for your dose o...

Interested in writing for us? Find out more.

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“I have always wished for my computer to be as easy to use as my telephone; my wish has come true because I can no longer figure out how to use my telephone” - Bjarne Stroustrup