Robotic Process Automation
Robotic Process Automation
Theory:
Visual Studio empowers you to complete the entire development cycle in one place. For
example, you can edit, debug, test, version control, and deploy to the cloud. With the
diversity of features and languages in Visual Studio, you can grow from writing your first
piece of code to developing in multiple project types.
Message box:
A message box is special type of Visual Basic window in which you can display a message to
the user. You can display message, an optional icon, a title bar caption, and command buttons
in a message box.
Input box:
VBA InputBox is used to prompt the user to enter the values. This message box is used to
displaying a message and waits for the user action performed by pressing the button. A text
can be return in the text box by using the InputBox function if the user clicks on the OK or
Enter button.
Arithmetic operations:
Arithmetic operators are used to perform many of the familiar arithmetic operations that
involve the calculation of numeric values represented by literals, variables, other expressions,
function and property calls, and constants.
• You can add two values in an expression together with the + Operator, or subtract one
from another with the - Operator (Visual Basic), as the following example
demonstrates.
• Negation also uses the - Operator (Visual Basic), but with only one operand, as the
following example demonstrates.
• Multiplication and division use the * Operator and / Operator (Visual Basic),
respectively, as the following example demonstrates.
Code:
namespace experimentno9
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
Resources Required:
● Internet
● Desktop/Laptop
● Chrome/Internet explorer
● Notepad
● Microsoft Visual Studio
Output:
Conclusion:
From this experiment how to create a page in visual studio. Also learnt the code used for the
coding of that.