VB.NET CObj Example – Code Sample Syntax

VB.NET CObj Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CObj Code Example. View Other VB.NET Conversion Function Source Code Examples Description: Converts any valid expression into Object data type Syntax: CObj(expression) Parameters Description expression any valid expression Result Data Type Description object returns input as an object Step 1: Click Visual Basic to Cut-n-paste code into... [Read More...]

VB.NET CLng Example – Code Sample Syntax

VB.NET CLng Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CLng Code Example. View Other VB.NET Conversion Function Source Code Examples Description: Converts positive and negative numbers into Long data type Syntax: CLng(expression) Parameters Description expression -9,223,372,036,854,775,808 through 9,223,372,036,854,775,807; fractional parts are rounded. Result Data Type Description Long returns... [Read More...]

VB.NET CInt Example – Code Sample Syntax

VB.NET CInt Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CInt Code Example. View Other VB.NET Conversion Function Source Code Examples Syntax: CInt(expression) – Converts positive and negative numbers into integer data type. Parameters Description expression -2,147,483,648 through 2,147,483,647; fractional parts are rounded Step 1: Click Visual Basic to Cut-n-paste code into clsCInt.vb Public... [Read More...]

VB.NET CInt Example – Code Sample Syntax

VB.NET CInt Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CInt Code Example. View Other VB.NET Conversion Function Source Code Examples Description: Converts positive and negative numbers into Integer data type Syntax: CInt(expression) Parameters Description expression -2,147,483,648 through 2,147,483,647; fractional parts are rounded Result Data Type Description Integer returns integer Step... [Read More...]

VB.NET CDec Example – Code Sample Syntax

VB.NET CDec Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CDec Code Example. View Other VB.NET Conversion Function Source Code Examples Description: Converts positive and negative numbers into decimal data type Syntax: CDec(expression) Parameters Description expression +/-79,228,162,514,264,337,593,543,950,335 for zero-scaled numbers, i.e., numbers with no decimal places. For numbers with 28... [Read More...]

VB.NET CDbl Example – Code Sample Syntax

VB.NET CDbl Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CDbl Code Example. View Other VB.NET Conversion Function Source Code Examples Description: Converts positive and negative numbers into double data type Syntax: CDbl(expression) Parameters Description expression -1.79769313486231570E+308 through -4.94065645841246544E-324 for negative values; 4.94065645841246544E-324 through... [Read More...]

C# – 12 Free Video Tutorials

Twelve Free C# Video Tutorials Special thanks to Saurabh Vyas for being the contributing author for this post. These videos are from www.thebestcsharpprogrammerintheworld.com Here are twelve excellent free C-Sharp video tutorials. Title Date Presenter Min Lesson 1 (Part 1) Gridview DataAccess C# 8/20/2009 Ben Perkins 7 Lesson 2 (Part 1) Gridview MethodInvoker Threading Progress Bar C# 8/26/2009 Ben Perkins 9 Lesson 3 (Part 1) Disconnected... [Read More...]

VB.NET CDate Example – Code Sample Syntax

VB.NET CDate Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CDate Code Example. View Other VB.NET Conversion Function Source Code Examples Description: Converts any valid date and time into date data type Syntax: CDate(expression) Parameters Description expression any valid representation of date and time Result Data Type Description date returns date Step 1: Click Visual Basic to Cut-n-paste... [Read More...]

VB.NET CChar – Code Sample Syntax Example

VB.NET CChar Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CChar Code Example. View Other VB.NET Conversion Function Source Code Examples Description: Converts Char or first character of string into Char data type Syntax: CChar(expression) Parameters Description expression char or string Result Data Type Description Char only first character is used when expression is string Step 1: Click Visual... [Read More...]

VB.NET CByte – Code Sample Syntax Example

VB.NET CByte Example – Code Sample Syntax Purpose: – Illustrates using VB.NET CByte Code Example. View Other VB.NET Conversion Function Source Code Examples Purpose: Converts 0 to 255 unsigned (rounded) into byte data type Syntax: CByte(numeric expression) Parameters Description numeric expression 0 to 255 Result Data Type Description Byte 0 to 255 unsigned and parameter1 is rounded Step 1: Click Visual Basic... [Read More...]

VB.NET Console Conversion Function Examples

VB.NET Console Conversion Function Examples Purpose: – Illustrates Conversion Function Examples for VB.NET Console Applications. View Other VB.NET Console Source Code Examples » VB.NET Console Conversion Function Examples Type Conversion Functions Input Expression Result CBool(expression) Char, Numeric, or String BooleanDataType CByte(expression) 0 to 255 unsigned (gets rounded) Byte Data Type CChar(expression) Char... [Read More...]

« Previous PageNext Page »