How to Minimize/Send an App Icon to System Tray in Visual Basic 6

11:58 PM     Unknown     0 Comments

How to Minimize/Send an App Icon to System Tray in Visual Basic 6

The following code snippet allows to manipulate the system tray by adding your apps icon when you minimize the form and restore when you double click on the app's icon on the system tray area.Option ExplicitPublic Type NOTIFYICONDATA cbSize As Long hWnd As Long uId As Long uFlags As Long uCallBackMessage As Long hIcon As Long szTip As String...

How to Set Windows Form Always on Top of Other Applications in VB6

11:02 PM     Unknown     1 Comments

How to Set Windows Form Always on Top of Other Applications in VB6

The following code snippets allows to set Windows Form Always on Top of Other applications in Visual Basic 6.0. Public Const SWP_NOMOVE = 2Public Const SWP_NOSIZE = 1Public Const FLAGS = SWP_NOMOVE Or SWP_NOSIZEPublic Const HWND_TOPMOST = -1Public Const HWND_NOTOPMOST = -2Declare Function SetWindowPos Lib "user32" _ (ByVal hWnd As Long, _ ByVal hWndInsertAfter As Long, _ ByVal x...

How to Make Windows Form Transparent using Visual Basic 6/VB6

9:32 PM     Unknown     0 Comments

How to Make Windows Form Transparent using Visual Basic 6/VB6

The following code snippets allows you to make windows form transparent using VB6.In a standard module, copy and paste the following declarations and function.[Module1.bas]Option ExplicitConst LWA_COLORKEY = 1Const LWA_ALPHA = 2Const LWA_BOTH = 3Const WS_EX_LAYERED = &H80000Const GWL_EXSTYLE = -20Private Declare Function SetLayeredWindowAttributes Lib "user32" (ByVal hWnd As Long, ByVal color As Long, ByVal x As Byte, ByVal alpha...

Internet Connection Speed Booster

3:38 AM     Unknown     0 Comments

Internet Connection Speed Booster

Internet Speed Booster is a simple tool that can be used to reset internet connection, flush DNS resolver cache, and renew dynamic IP addresses.This tool allows online and massive gamers to feel like a boss in the games arena.This tool primarily solves the problem if you're having limited connectivity or frequent disconnection from the internet.Internet Speed Booster is just...

How to Get the Count of Filtered Sets of Data Rows in Excel using VBA

1:59 AM     Unknown     0 Comments

How to Get the Count of Filtered Sets of Data Rows in Excel using VBA

The following function below allows you to get the number of visible rows from a filtered sets of rows in Excel using VBA. The function takes two arguments which is the Column and StartRow. Calling the FilterCount() function returns the number of visible rows. Also added an error handler which process the error description to determine if there's a...

How to Copy Only the Visible Rows of a Filtered Data in Excel using VBA

12:28 AM     Unknown     0 Comments

How to Copy Only the Visible Rows of a Filtered Data in Excel using VBA

You might be working on a project where you need to filter sets of data and create a raw data of that filtered sets of data to a new sheet or range.By default, Excel copies hidden or filtered cells in addition to visible cells. If some cells, rows, or columns on your worksheet are not displayed, you have the...

How to Get the Addresses of Visible Rows from a Filtered Data in Excel using VBA

12:47 AM     Unknown     0 Comments

How to Get the Addresses of Visible Rows from a Filtered Data in Excel using VBA

The following function allows you to get the Address of each visible rows from a filtered sets of data in Excel using VBA.[VBA]Dim FilteredRows as VariantPublic Function GetFilteredRows(Optional ByVal RowPrefixed As Boolean) Dim Rng As Range, rngF As Range, rngVal As Range 'Ranges Dim val As Variant 'Range Value Dim i As Integer 'Counter Dim lRow as long 'Last...