About 178 results
Open links in new tab
  1. Introduction to Visual Programming Language - GeeksforGeeks

    Jun 9, 2022 · Examples of Visual Programming Language: There are n numbers of visual programming languages and the few which are in the top list is given below. Scratch: With the help of this language users can create, stories, games, and animations without writing any lines of code in this you just have to create the logic and assemble the blocks.

  2. Function Statement - Visual Basic | Microsoft Learn

    Sep 14, 2021 · The following example uses the Function statement to declare the name, parameters, and code that form the body of a Function procedure. The ParamArray modifier enables the function to accept a variable number of arguments.

  3. C++ Function (With Examples) - Programiz

    In this tutorial, we will learn about the C++ function and function expressions with the help of examples. A function is a block of code that performs a specific task.

  4. Lesson 14 : Functions and Sub Procedure - Visual Basic Tutorial

    Feb 14, 2025 · In this example, we create a sub procedure to sum up two values that are specified by the arguments . The main program can reference a procedure by using its name together with the arguments in the parentheses. x = Val(TxtNum1.Text) y = Val(TxtNum2.Text) sum x, y. MsgBox ("sum=" & a + b)

  5. Procedures & functions in Visual Basic - ZetCode

    Oct 18, 2023 · We use procedures and functions to create modular programs. Visual Basic statements are grouped in a block enclosed by Sub, Function and matching End statements. The difference between the two is that functions return values, procedures do not. A procedure and function is a piece of code in a larger program. They perform a specific task.

  6. VB.NET Functions Overview - Online Tutorials Library

    VB.NET Functions Overview - Learn about functions in VB.NET, including how to create, call, and use them effectively in your applications.

  7. Programming Fundamentals/Functions/Functions - Wikiversity

    May 18, 2023 · A function is a sequence of program instructions that performs a specific task, packaged as a unit. Depending on the programming language, a function may be called a subroutine, a procedure, a routine, a method, or a subprogram.

  8. Visual Basic/Procedures and Functions - Wikibooks

    Jun 26, 2020 · Functions are named blocks of program code that perform a specific task and return a result. The task can be as simple as adding two numbers or as complex as launching a spacecraft. A subroutine is like a function, just that it does not return a result. An example function definition: An example subroutine definition: Note the following:

  9. Functions in Programming - GeeksforGeeks

    Jul 29, 2024 · What are Functions in Programming? Functions in Programming is a block of code that encapsulates a specific task or related group of tasks. Functions are defined by a name, may have parameters and may return a value.

  10. Visual Basic .NET provides many built-in functions to assist your coding or applications. By using built-in functions you save time in coding and debugging work that has already been provided for you. Function Description: Returns the String that is passed in all uppercase letters.

Refresh