VB.NET LCase() – Code Sample
VB.NET LCase Example – Code Sample Syntax Abstract: – Illustrates using VB.NET LCase Code Example. LCase Other Languages LCase VB.NET ASP.NET LCase C# Console LCase C# ASP.NET Other VB.NET Console Examples *** 1. Download Source Code *** Download Source Code for All VB Console Examples in One Project *** 2. LCase Syntax *** Purpose: Returns a string or character in lowercase. Syntax:... [Read More...]
VB.NET Split() – Code Sample
VB.NET Split Example – Code Sample Syntax Abstract: – Illustrates using VB.NET Split Code Example. Split Other Languages Split VB.NET ASP.NET Split C# Console Split C# ASP.NET Other VB.NET Console Examples *** 1. Download Source Code *** Download Source Code for All VB Console Examples in One Project – source code for hundreds of VB.NET console examples neatly organized in a single project. ***... [Read More...]
VB.NET Replace() – Code Sample
VB.NET Replace Example – Code Sample Syntax Abstract: – Illustrates using VB.NET Replace Code Example. Replace Other Languages Replace VB.NET ASP.NET Replace C# Console Replace C# ASP.NET Other VB.NET Console Examples *** 1. Download Source Code *** Download Source Code for All VB Console Examples in One Project – source code for hundreds of VB.NET console examples neatly organized in a single... [Read More...]
VB.NET Mid() – Code Sample
VB.NET Mid Example – Code Sample Syntax Abstract: – Illustrates using VB.NET Mid Code Example. Mid Other Languages Mid VB.NET ASP.NET Mid C# Console Mid C# ASP.NET Other VB.NET Console Examples *** 1. Download Source Code *** Download Source Code for All VB Console Examples in One Project *** 2. Mid Syntax *** Purpose: Returns the specified number of characters from the string starting ... [Read More...]
VB.NET InStr() – Code Sample
VB.NET InStr Example – Code Sample Syntax Abstract: – Illustrates using VB.NET InStr Code Example. InStr Other Languages InStr VB.NET ASP.NET InStr C# Console InStr C# ASP.NET Other VB.NET Console Examples *** 1. Download Source Code *** Download Source Code for All VB Console Examples in One Project *** 2. InStr Syntax *** Purpose: Returns an integer that represents the position... [Read More...]
VB.NET String.IsNullorEmpty()
VB.NET StringIsNullorEmpty Example – Code Sample Syntax Abstract: – Illustrates using VB.NET StringIsNullorEmpty Code Example. StringIsNullorEmpty Other Languages StringIsNullorEmpty VB.NET ASP.NET StringIsNullorEmpty C# Console StringIsNullorEmpty C# ASP.NET Other VB.NET Console Examples *** 1. Download Source Code *** Download Source Code for All VB Console Examples in One Project – source code... [Read More...]
VB.NET ASP.NET Binary File Sequential Read Source Code Example
VB.NET ASP.NET Binary File Sequential Read Source Code Example Purpose: – Illustrates using Binary File with Sequential Read in VB.NET ASP.NET. View Other VB.NET ASP.NET Source Code Examples Prerequistes: Install Visual Web Developer 2010 Install SQL Server Express Download Northwind and Pubs Databases Attach Northwind Database to Databases in Sql Express Attach pubs Database to Databases in Sql Express Notes: You can build your own library... [Read More...]
VB.NET Binary File Read Sequential – Source Code Example
VB.NET Binary File Read Sequential – Source Code Example Purpose: – Illustrates the VB.NET Syntax for Sequential Read of Binary File. View Other VB.NET Source Code Examples Prerequistes: Install Visual Basic (Express or Standard Edition) Install SQL Server Express Download Northwind and pubs Database Attach Northwind Database to Databases in Sql Express Attach pubs Database to Databases in Sql Express Notes: Console Application is... [Read More...]
VB.NET Binary File Read Random – Source Code Example
VB.NET Binary File Read Random – Source Code Example Purpose: – Illustrates the VB.NET Syntax for Random Read of Binary File. View Other VB.NET Source Code Examples Prerequistes: Install Visual Basic (Express or Standard Edition) Install SQL Server Express Download Northwind and pubs Database Attach Northwind Database to Databases in Sql Express Attach pubs Database to Databases in Sql Express Notes: Console Application is used to... [Read More...]
WITH Common Table Expressions – SQL Server Syntax Example: WITH AS – T-SQL Example
WITH Common Table Expressions – SQL Server Syntax Example: WITH AS – T-SQL Example Purpose: – Illustrates the SQL Server syntax for With Common Table Expressions. SYNTAX: [ WITH common_table_expression [ (column_name [ ,…n ] ) ] AS ( SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list [ FROM { table_source } [ ,…n ] ] [ WHERE select_condition] [ GROUP BY ] [... [Read More...]
SELECT WHERE Clause- SQL Server Syntax Example: WHERE – T-SQL Example
SELECT WHERE Clause- SQL Server Syntax Example: WHERE – T-SQL Example Purpose: – Illustrates the SQL Server syntax for SELECT WHERE Clause. SYNTAX: SELECT [ ALL | DISTINCT ] [ [TOP (expression) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE select_condition] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC | DESC ] PURPOSE:... [Read More...]