Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > Visual Basic.Net > Reference


Search:
What's New - What's Hot
Dir Function  Version: 0.00     Price: $0.00  
Total Hits: 10  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Returns a string representing the name of a file, directory, or folder that matches a specified pattern or file attribute, or the volume label of a drive.

The My.Computer.FileSystem Object gives you greater productivity and performance in file I/O operations than the Dir function. See My.Computer.FileSystem.GetDirectoryInfo Method for more information....

IPmt Function  Version: 0.00     Price: $0.00  
Total Hits: 10  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Required. Double specifying interest rate per period. For example, if you get a car loan at an annual percentage rate (APR) of 10 percent and make monthly payments, the rate per period is 0.1/12, or 0.0083....

Rate Function  Version: 0.00     Price: $0.00  
Total Hits: 7  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Required. Double specifies the total number of payment periods in the annuity. For example, if you make monthly payments on a four-year car loan, your loan has a total of 4 * 12 (or 48) payment periods....

Refreshing project references with a Macro     
Total Hits: 184  |  Today: 0Author: Gustavo Bonansea.      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article show you how to write a macro that refreshes all the references of a solution. This is useful when you have a lot of projects with interrelated DLL references between them. So when you have DLL versions problems, you refresh all the references of the solution an solve it....

INFO: Visual Basic .NET Is Missing the Referenced Sample Project Files (Q321425)     
Total Hits: 283  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

After you install Microsoft Visual Basic .NET Standard Edition, you are not able to find the sample projects referred to in the "In Action" sample booklet included with this program.This booklet was intended as a sample reference to the Step-By-Step series publication, Microsoft Visual Basic .NET, published by Microsoft Press....

A Primer on Creating Type-Safe References to Methods in Visual Basic .NET  Version: 0.00     Price: $0.00  
Total Hits: 12  |  Today: 0Author: Jesse Liberty      Rating:  
Read Reviews | Write Review |  Your Rating: 

Delegates, new in Visual Basic .NET, are type-safe, object-oriented references to methods. By using delegates, you make your methods accessible to others and therefore more extensible. This article provides an introduction to delegates, their benefits, and how they are used....

Number Property (Err Object)  Version: 0.00     Price: $0.00  
Total Hits: 25  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

When returning a user-defined error from an object, set Err.Number by adding the number you selected as an error code to the VbObjectError constant. For example, you use the following code to return the number 1051 as an error code:...

FileGetObject Function  Version: 0.00     Price: $0.00  
Total Hits: 20  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

The My feature gives you greater productivity and performance in file I/O operations than FileGetObject. For more information, see My.Computer.FileSystem Object....

GetAttr Function     
Total Hits: 10  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Returns a FileAttribute value representing the attributes of a file, directory, or folder.

The My feature gives you greater productivity and performance in file I/O operations than FileAttribute. For more information, see My.Computer.FileSystem Object....

Lock, Unlock Functions  Version: 0.00     Price: $0.00  
Total Hits: 14  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Controls access by other processes to all or part of a file opened using the Open function.

The My feature gives you greater productivity and performance in file I/O operations than Lock and Unlock. For more information, see My.Computer.FileSystem Object....

PV Function  Version: 0.00     Price: $0.00  
Total Hits: 6  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Returns a Double specifying the present value of an annuity based on periodic, fixed payments to be paid in the future and a fixed interest rate....

IRR Function  Version: 0.00     Price: $0.00  
Total Hits: 9  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Returns a Double specifying the internal rate of return for a series of periodic cash flows (payments and receipts)....

VbTypeName Function  Version: 0.00     Price: $0.00  
Total Hits: 6  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

VbTypeName returns the Visual Basic type name corresponding to the common language runtime type name. For example, if UrtName contains "Int32" or "System.Int32," VbTypeName returns "Integer." If VbTypeName does not recognize the value of UrtName, it returns Nothing (not the string "Nothing")....

Object References in VBScript (Variables and Values in VBScript, Part 3)     
Total Hits: 176  |  Today: 0Author: Bill Wilkinson      Rating:  
Read Reviews | Write Review |  Your Rating: 

In the previous articles in this series (part one and part two) we looked at the basics of how variables and values are implemented in VBScript (and, with minor variations, in JScript) and of how VBScript represents and uses arrays. As noted in the previous articles, in VBScript, all variables are always of the same kind or type, a VARIANT (which is in turn an OLE-defined structure). And a VARIANT instance always occupies 16 bytes of memory but only uses what is needed. The first two bytes of th...

HOW TO: Access Properties of the Current Cell in the Datagrid by Using Visual Basic .NET (Q321296)     
Total Hits: 739  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This step-by-step article demonstrates how to obtain a reference to the current cell in the DataGrid control....

HOW TO: Return an Oracle Ref Cursor to a .NET DataReader Object by Using the .NET Managed Provider for Oracle (Q322160)     
Total Hits: 3448  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This step-by-step article describes how to use the .NET Managed Provider for Oracle to pass an input parameter to retrieve a Ref Cursor from an Oracle stored procedure by using the OracleDataReader object....

When to Pass VB.NET Arguments as Reference Types Versus Value Types  Version: 0.00     Price: $0.00  
Total Hits: 23  |  Today: 0Author: Bill Hatfield      Rating:  
Read Reviews | Write Review |  Your Rating: 

As you know, data types in the .NET Framework come in two varieties: value types and reference types. Likewise, you can pass any argument to a subroutine or function using the ByVal or ByRef keyword. In both cases, the term value implies that you are working with the data and the term reference implies that you are working with a pointer (or reference) to the data....

Constants..::.vbGet Field  Version: 0.00     Price: $0.00  
Total Hits: 25  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Indicates the type of procedure being invoked when calling the CallByName function....

Constants..::.vbNormalFocus Field  Version: 0.00     Price: $0.00  
Total Hits: 30  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Indicates the window style to use for the invoked program when calling the Shell function....

GetException Function  Version: 0.00     Price: $0.00  
Total Hits: 21  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

The GetException function is available only from the Err object class. It works with the Exception property of the Err object to display the error that has occurred....


1  2  3  4  5  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net