Instructional Video3:28
Curated Video

Excel VBA Programming The Complete Guide - Review of Application.EnableEvents

Higher Ed
The Application.EnableEvents property is used to enable and disable Excel events (automatic actions that are triggered by user interactions). In this lesson, we discuss the benefits of temporarily disabling this feature in an event...
Instructional Video6:28
Curated Video

Excel VBA Programming The Complete Guide - Intro to Arrays

Higher Ed
In this section, we'll explore the array, the most popular data structure in computer science. An array is a sequenced collection of elements, each of which is assigned an index position. In this lesson, we create a fixed-size array of...
Instructional Video9:02
Curated Video

Excel VBA Programming The Complete Guide - The Visual Basic Editor

Higher Ed
In this lesson, we explore the components of the Visual Basic Editor, including the Project Explorer, which lists all open workbooks and worksheets as well as all modules (containers for code). Properties Window, which can be used to get...
Instructional Video6:00
Curated Video

Excel VBA Programming The Complete Guide - StatusBar

Higher Ed
The StatusBar is an information bar located on the bottom left of the Excel interface. In this lesson, we run a long procedure and use the StatusBar to provide updates to the user on its completion status. This clip is from the chapter...
Instructional Video5:24
IDG TECHtalk

Using Cython to speed up Python

Higher Ed
Cython allows math-heavy Python code to be transformed into C and run at many times its original speed. Here, we'll demonstrate graphically how this works.
Instructional Video11:52
Curated Video

Bash Shell Scripting- For loop with arrays

Higher Ed
This video shows how to use the for loop with arrays. This clip is from the chapter "Loops and Loop control statements - Part 1" of the series "Complete Bash Shell Scripting".This section is the first part that explains Loops and Loop...
Instructional Video18:55
Curated Video

Bash Shell Scripting- Introduction to Arrays

Higher Ed
This video introduces you to arrays. This clip is from the chapter "Arrays of bash shell scripting" of the series "Complete Bash Shell Scripting".This section covers the arrays of Bash shell scripting.
Instructional Video16:41
Packt

General Loops

Higher Ed
JavaScript Language Fundamentals: General Loops This clip is from the chapter "JavaScript Language Fundamentals" of the series "Modern JavaScript from the Beginning".In this section, you will learn the important fundamentals and concepts...
Instructional Video7:15
Curated Video

Complete Modern C++ - Non-type Template Arguments

Higher Ed
This video explains the purpose of non-type template arguments. This clip is from the chapter "Templates" of the series "Complete Modern C++".In this section, we will see non-type template arguments, perfect forwarding, variadic...
Instructional Video4:04
Curated Video

Comprehensive Android Developer Bootcamp - Pre-setting Arrays' Length

Higher Ed
Java Data Structures:Pre-setting Arrays' Length This clip is from the chapter "Java Data Structures" of the series "The Comprehensive Android Developer Bootcamp".In this section you will cover the Java Data Structures. You will be...
Instructional Video1:32
Curated Video

Complete Java SE 8 Developer Bootcamp - Sorting and Searching Collections

Higher Ed
Learn how collections can be sorted and searched through, with methods provided by the Collections class. This clip is from the chapter "More with Collections" of the series "Complete Java SE 8 Developer Bootcamp".In this section, learn...
Instructional Video8:11
Curated Video

Java Programming for Complete Beginners - Java 16 - Step 03 - Java Arrays - Puzzles - Arrays of Objects, Primitive Data Types, toStr

Higher Ed
In this session, we will learn about Java arrays - puzzles - arrays of objects, primitive data types, toStr. This clip is from the chapter "Arrays and ArrayLists" of the series "Java Programming for Complete Beginners - Java 16".In this...
Instructional Video7:42
Curated Video

HTML CSS and JavaScript for Beginners - A Web Design Course - Array Methods

Higher Ed
In this video, we'll cover array methods. This clip is from the chapter "Learn JavaScript Section" of the series "HTML CSS and JavaScript for Beginners - A Web Design Course".Learn how to write JavaScript, JavaScript code, functions,...
Instructional Video12:32
Curated Video

Excel VBA Programming The Complete Guide - The Range.Sort Method

Higher Ed
Sorting is one of the most popular operations in Excel. In this lesson, we utilize the Range.Sort method to sort both one and two columns at a time (in ascending or descending order) and discuss how we can ignore the values in the header...
Instructional Video5:54
Curated Video

Excel VBA Programming The Complete Guide - The Range.Delete Method

Higher Ed
Most deletion operations will involve removing entire rows or columns at a time. In this lesson, we discuss how to make that happen in VBA as well as what happens when we delete a single cell instead. This clip is from the chapter "Range...
Instructional Video9:53
Curated Video

Excel VBA Programming The Complete Guide - R1C1 Notation, Part I

Higher Ed
R1C1 notation is a different way of thinking about cells in Excel. Instead of using a letter for the column and a row for the number, R1C1 relies on numbers for both. In this lesson, we enable R1C1 notation in our Excel interface and...
Instructional Video5:12
Curated Video

Excel VBA Programming The Complete Guide - The Worksheet.Visible Property

Higher Ed
The Worksheet.Visible property is used to hide and unhide a worksheet. It accepts either a Boolean argument (True or False) or an XlSheetVisibility enumeration. One cool VBA feature is the ability to use the xlSheetVeryHidden option to...
Instructional Video5:42
Curated Video

Excel VBA Programming The Complete Guide - The Variant Data Type

Higher Ed
In this lesson, we use the TypeName method from the VBA object to track the data type of a Variant variable as we assign different values to it. This clip is from the chapter "Variables and Data Types" of the series "Excel VBA...
Instructional Video8:17
Curated Video

Excel VBA Programming The Complete Guide - Ways to Invoke A Procedure

Higher Ed
In this lesson, we explore a myriad of ways to execute a public procedure from both the code editor and the Excel interface, including: • The green execute button in the VBE • The F5 keyboard shortcut in the VBE • Clickable buttons • The...
Instructional Video13:35
Curated Video

Excel VBA Programming The Complete Guide - The MsgBox Method

Higher Ed
The MsgBox is a simple dialog box that prompts a user action or confirmation. In this lesson, we'll explore the syntax for the method as well as begin our discussion of inputs, parameters, and arguments. A parameter is the name given to...
Instructional Video6:57
Curated Video

Excel VBA Programming The Complete Guide - Introduction to Events

Higher Ed
An event is a regular Excel action --- opening a worksheet, entering a cell value -- that can automatically trigger a VBA procedure. In this lesson, we compare event procedures to regular procedures and setup our VBE environment for...
Instructional Video7:19
Curated Video

Excel VBA Programming The Complete Guide - Intro to Error Handling

Higher Ed
Programmers of all experience levels make mistakes --- it's part of the job. Error handling is the ability to avoid errors in our code by catching them before they happen. In this lesson, we discuss some common errors we can run into in...
Instructional Video9:29
Curated Video

Excel VBA Programming The Complete Guide - The Application.InputBox Method

Higher Ed
The Application.InputBox method offers some additional flexibility when collecting user input. In this lesson, we provide a custom Type argument to collect a Range input from the user. We then color the range with an assorted collection...
Instructional Video4:49
Curated Video

Excel VBA Programming The Complete Guide - Alternate Syntax for Fixed-Size Arrays

Higher Ed
The LowerBound To UpperBound syntax can be used when declaring an array to modify the starting and ending index position. In this lesson, we declare an array of 6 whole numbers. This clip is from the chapter "Arrays" of the series "Excel...