0
How to detect Scroll position of a webpage using jQuery's .scrollTop()How to detect Scroll position of a webpage using jQuery's .scrollTop()

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 matched elements or set the vertical position of the scroll bar for every matched element. You can extract the s…

Read more »

1
VB.Net Print PDF DocumentVB.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 operating systems. Each PDF file encapsulates a complete description of a fixed-layout flat document, including t…

Read more »

1
Formatting Date and Time VB.NETFormatting 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, the way how your code is interpreted may vary depending on the locale in which your application is deployed. Wit…

Read more »

0
Working with Date and Time VB.NetWorking 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's a part of your daily life while creating your applications which makes it easy for you to manipulate system's date an…

Read more »

0
Commonly Used VBA Statements for Excel VBA ProgrammingCommonly 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 more information about each statement, consult Excel’s Help system by pressing "F1". …

Read more »

0
Remove and Replace All Characters in Microsoft Excel using VBARemove 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 the code below on your VBA code class or module. Sub FindandReplace(FindWhat as String, ReplaceWith as String…

Read more »

0
How to Get the Count of Filtered Sets of Data Rows in Excel using VBAHow 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 vi…

Read more »

0
How to Copy Only the Visible Rows of a Filtered Data in Excel using VBAHow 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,…

Read more »

0
How to Get the Addresses of Visible Rows from a Filtered Data in Excel using VBAHow 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…

Read more »

0
How to Suppress Warning and Alerts in Excel using VBAHow 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 containing macros to a new workbook which you wanted to save it as .xls or .xlsx extensions. By that, when you…

Read more »

0
How to Create a Custom Checkbox using only the Cells in Microsoft ExcelHow 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 their option. We'll, if you want to have another look aside from the default check box control. You can still cr…

Read more »

0
Using Named Ranges in Microsoft ExcelUsing 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 of cells. So that you can refer to them in formulas using that name.You can view the complete tutorial here Ho…

Read more »

3
Scrape Website Data into Excel using VBAScrape 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(dot)renewableuk(dot)com. Please also read the privacy policy of the website before mining data. Goal:Get all data und…

Read more »

1
How to use Do While Loop and a For Loop Counter in VB.NetHow 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 Description:1. A customer will be asked to enter the prices of 4 items purchased using an input box (create a counter loop).…

Read more »

1
Send Email with Excel VBA via CDO through GMail 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 save the workbook, compose a new email, copy the contents or attach it on your email client. That's a time consumi…

Read more »

0
The Commonly Used Excel FunctionsThe 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 list of Excel Functions commonly used by everyone.…

Read more »

0
Populate Data into ListView Control in VB.NetPopulate 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 Project and add the following code snippet on Form Load event.Public Class Form1Private Sub Form1_Load(ByVal send…

Read more »

0
Populate Data into DataGridView Control using For-Loop in VB.NetPopulate 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 sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load With dgv 'SET COLUMN HEA…

Read more »

0
Change/Remove the Password of a Password-Protected VBA Project in Microsoft ExcelChange/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. It's okay to open these files if you really knew the purpose of the project. But, what if you're in a company…

Read more »

0
How to set a Password on your Excel VBA ProjectHow 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 VBA Project Explorer. Right Click on the VBAProject(Filename.xls) on the uppermost part of the explorer.2. On the …

Read more »
 
 
Top