by Anaz (2 Submissions)
Category: Complete Applications
Compatability: Visual Basic 3.0
Difficulty: Intermediate
Date Added: Wed 3rd February 2021
Rating:
(3 Votes)
The basic part is to have a message poping up from the system tray area with a hyperlink in it, then after a while it returns back.If you click the hyperlink the site will be opened.
API DeclarationsOption Explicit 'For helping to declare all variables
'To open the site.This is not needed for the animation
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
Download Scrolling Notice (4 KB)