The .scrollTop() function in jQuery allows you to get the current vertical position of the scroll bar for the first element in the set of ma...
VB.Net Print PDF Document
Portable Document Format ( PDF ) is a file format used to present documents in a manner independent of application software, hardware, and ...
Formatting Date and Time VB.NET
The Date literal must be enclosed within number signs ( #date# ) and specify the date value in the format M/d/yyyy like #09/06/2014# . Else...
Working with Date and Time VB.Net
VB.NET's DateTime structure represents an instant in time which is commonly expressed as a particular date and time of the day. It'...
Commonly Used VBA Statements for Excel VBA Programming
The following table shows a list of commonly used VBA statements that might be useful when creating macros for your Excel projects. To know ...
Remove and Replace All Characters in Microsoft Excel using VBA
The following FindandReplace() function allows you to replace or remove specific text and characters you want in Microsoft Excel. Just copy...
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 t...
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 shee...
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 Filte...
How to Suppress Warning and Alerts in Excel using VBA
In Microsoft Excel, you can suppress the message warning and alerts especially when you try to create a copy of a worksheet from a workbook ...
How to Create a Custom Checkbox using only the Cells in Microsoft Excel
You might be creating templates with Microsoft Excel, and one of the feature you want is add a check boxes control where users can choose th...
Using Named Ranges in Microsoft Excel
Named Ranges in Excel enable you to give one, or a group of cells a name other than the default B4 for a single cell, or B2:E20 for a range ...
Scrape Website Data into Excel using VBA
I'll be showing you an example on how to Scrape Data from a Website into Excel Worksheet using VBA. We'll be scraping data from www(...
How to use Do While Loop and a For Loop Counter in VB.Net
In this tutorial, we'll be working on a real example on how to use Do...While Loop and a For...Loop Counter in VB.Net. Example Descript...
Send Email with Excel VBA via CDO through GMail
If you're working on a project or having a numerous reports in excel to be sent out to your boss or clients. And what you usually do is ...
The Commonly Used Excel Functions
Some Excel functions may apply to specific subject areas, while others are general and can be applied to all needs. The following shows a li...
Populate Data into ListView Control in VB.Net
The following example Populates Data into ListView Control in VB.Net when the form is loaded. Add a ListView Control on your Visual Basic Pr...
Populate Data into DataGridView Control using For-Loop in VB.Net
The following example shows how to Populate Data to DataGridView Control in VB.Net. Public Class Form1 Private Sub Form1_Load(ByVal send...
Change/Remove the Password of a Password-Protected VBA Project in Microsoft Excel
Some Excel VBA developers are protecting their codes and modules with password in order not to let others view the content of their project....
How to set a Password on your Excel VBA Project
Now, for those who don't know yet How to Set a Password on your VBA Project in Excel. The guide below might be of help to you. 1. On the...