InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.NetMiscellaneous Feature ASP.NET Scripting Visual Basic .NET TOCVB .NET Language ReferencenaVB.Net ElementsVB.NET Operators StatementComment StatementsAssignment StatementsDeclaration StatementsContol Flow StatementsTransfer StatementsFlow Statements Draft for Information Only
Content
VB.NET Comment Statements
VB.NET Comment StatementsThe supporting VB.NET Miscellaneous Statements are Error, Mid, RaiseEvent, Randomize,Stop, Yield Error StatementSimulates the occurrence of an error. SyntaxError errornumber Parts
errornumber RemarksThe Error statement is supported for backward compatibility. In new code, especially when creating objects, use the Err object's Raise method to generate run-time errors. If errornumber is defined, the Error statement calls the error handler after the properties of the Err object are assigned the following default values:
If no error handler exists, or if none is enabled, an error message is created and displayed from the Err object properties. Note Some Visual Basic host applications cannot create objects. See your host application's documentation to determine whether it can create classes and objects. RequirementsNamespace: Microsoft.VisualBasic Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll) See alsoMid StatementReplaces a specified number of characters in a String variable with characters from another string. SyntaxMid( _ ByRef Target As String, _ ByVal Start As Integer, _ Optional ByVal Length As Integer _ ) = StringExpression Parts
Target
Start
Length
StringExpression Exceptions
RemarksThe number of characters replaced is always less than or equal to the number of characters in Target. Visual Basic has a Mid function and a Mid statement. These elements both operate on a specified number of characters in a string, but the Mid function returns the characters while the Mid statement replaces the characters. For more information, see Mid. Note The MidB statement of earlier versions of Visual Basic replaces a substring in bytes, rather than characters. It is used primarily for converting strings in double-byte character set (DBCS) applications. All Visual Basic strings are in Unicode, and MidB is no longer supported. RequirementsNamespace: Microsoft.VisualBasic Module: Strings Assembly: Visual Basic Runtime Library (in Microsoft.VisualBasic.dll) See alsoRaiseEvent StatementTriggers an event declared at module level within a class, form, or document. SyntaxRaiseEvent eventname[( argumentlist )] Parts
eventname
argumentlist RemarksThe required eventname is the name of an event declared within the module. It follows Visual Basic variable naming conventions. If the event has not been declared within the module in which it is raised, an error occurs. The following code fragment illustrates an event declaration and a procedure in which the event is raised.
VB
' Declare an event at module level. Event LogonCompleted(ByVal UserName As String) Sub Logon(ByVal UserName As String) ' Raise the event. RaiseEvent LogonCompleted(UserName) End Sub You cannot use RaiseEvent to raise events that are not explicitly declared in the module. For example, all forms inherit a Click event from System.Windows.Forms.Form, it cannot be raised using RaiseEvent in a derived form. If you declare a Click event in the form module, it shadows the form's own Click event. You can still invoke the form's Click event by calling the OnClick method. By default, an event defined in Visual Basic raises its event handlers in the order that the connections are established. Because events can have ByRef parameters, a process that connects late may receive parameters that have been changed by an earlier event handler. After the event handlers execute, control is returned to the subroutine that raised the event. Note Non-shared events should not be raised within the constructor of the class in which they are declared. Although such events do not cause run-time errors, they may fail to be caught by associated event handlers. Use the Shared modifier to create a shared event if you need to raise an event from a constructor. Note You can change the default behavior of events by defining a custom event. For custom events, the RaiseEvent statement invokes the event's RaiseEvent accessor. For more information on custom events, see Event Statement. Note The My.Application.DoEvents method does not process events in exactly the same way as the form does. To allow the form to handle the events directly, you can use multithreading. For more information, see Managed Threading. See alsoThrow StatementThrows an exception within a procedure. Syntax
VB
Throw [ expression ] Partexpression Provides information about the exception to be thrown. Optional when residing in a Catch statement, otherwise required. RemarksThe Throw statement throws an exception that you can handle with structured exception-handling code (Try...Catch...Finally) or unstructured exception-handling code (On Error GoTo). You can use the Throw statement to trap errors within your code because Visual Basic moves up the call stack until it finds the appropriate exception-handling code. A Throw statement with no expression can only be used in a Catch statement, in which case the statement rethrows the exception currently being handled by the Catch statement. The Throw statement resets the call stack for the expression exception. If expression is not provided, the call stack is left unchanged. You can access the call stack for the exception through the StackTrace property. See alsoYield StatementSends the next element of a collection to a For Each...Next statement. SyntaxYield expression Parameters
RemarksThe Yield statement returns one element of a collection at a time. The Yield statement is included in an iterator function or Get accessor, which perform custom iterations over a collection. You consume an iterator function by using a For Each...Next Statement or a LINQ query. Each iteration of the For Each loop calls the iterator function. When a Yield statement is reached in the iterator function, expression is returned, and the current location in code is retained. Execution is restarted from that location the next time that the iterator function is called. An implicit conversion must exist from the type of expression in the Yield statement to the return type of the iterator. You can use an Exit Function or Return statement to end the iteration. "Yield" is not a reserved word and has special meaning only when it is used in an Iterator function or Get accessor. For more information about iterator functions and Get accessors, see Iterators. Iterator Functions and Get AccessorsThe declaration of an iterator function or Get accessor must meet the following requirements:
An iterator function cannot occur in an event, instance constructor, static constructor, or static destructor. An iterator function can be an anonymous function. For more information, see Iterators. Exception HandlingA Yield statement can be inside a Try block of a Try...Catch...Finally Statement. A Try block that has a Yield statement can have Catch blocks, and can have a Finally block. A Yield statement cannot be inside a Catch block or a Finally block. If the For Each body (outside of the iterator function) throws an exception, a Catch block in the iterator function is not executed, but a Finally block in the iterator function is executed. A Catch block inside an iterator function catches only exceptions that occur inside the iterator function. Technical ImplementationThe following code returns an IEnumerable (Of String) from an iterator function and then iterates through the elements of the IEnumerable (Of String).
VB
Dim elements As IEnumerable(Of String) = MyIteratorFunction() … For Each element As String In elements Next The call to MyIteratorFunction doesn't execute the body of the function. Instead the call returns an IEnumerable(Of String) into the elements variable. On an iteration of the For Each loop, the MoveNext method is called for elements. This call executes the body of MyIteratorFunction until the next Yield statement is reached. The Yield statement returns an expression that determines not only the value of the element variable for consumption by the loop body but also the Current property of elements, which is an IEnumerable (Of String). On each subsequent iteration of the For Each loop, the execution of the iterator body continues from where it left off, again stopping when it reaches a Yield statement. The For Each loop completes when the end of the iterator function or a Return or Exit Function statement is reached. See alsoSource/Reference
©sideway ID: 200800013 Last Updated: 8/13/2020 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019